/* Footer styles */
.footer {
  color: var(--content);
  font-size: 0.9em;
  line-height: 1.5;
  text-align: center;
}

/* Center the entire footer content */
.footer__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Container for all footer items */
.footer-content {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  padding: 0;
}

/* Footer logo - override theme styles */
.footer-logo {
  height: 1.5em; /* Match text height */
  width: auto !important;
  margin: 0 8px 0 0 !important;
  padding: 0 !important;
  vertical-align: -0.15em; /* Fine-tuned alignment */
  display: inline-block;
  object-fit: contain;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  border-radius: 0 !important;
  max-width: none !important;
  max-height: none !important;
}

/* Copyright text */
.footer .copyright {
  color: var(--content);
  margin: 0;
  padding: 0;
  display: inline;
  vertical-align: middle;
}

/* Links */
.footer a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin: 0 2px;
  padding: 0 2px;
}

.footer a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Add dot separators between all items */
.footer-content > *:not(:last-child)::after {
  content: '·';
  margin: 0 4px;
  color: var(--content);
  opacity: 0.5;
  pointer-events: none;
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
