.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 2rem 3rem;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-text {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

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

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
