.footer {
  background: var(--neutral-dark);
  padding: var(--space-4) clamp(1rem, 4vw, 3rem);
  font-size: var(--text-xs);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-copyright {
  color: var(--text-secondary);
  margin: 0;
  font-weight: 250;
  font-size: var(--text-xs);
}

.footer-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 250;
}

.footer-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 600px) {
  .footer-links {
    gap: var(--space-2);
  }
}