.footer {
  background: var(--color-bg);
  color: var(--color-text-muted);
  text-align: center;
  padding: var(--space-8) var(--space-4);
  font-family: var(--font-text);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.footer a {
  color: var(--color-text-muted);
  text-decoration: none;
  margin: 0 var(--space-2);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Desktop */
@media (min-width: var(--bp-md)) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    max-width: var(--container-xl);
  }
}
