/* Footer */
footer.footer {
  background-color: var(--surface-2);
  margin-top: var(--size-8);
  padding: var(--size-2) 0;
}

.footer__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-2);
  font-size: var(--font-size-0);
}

.footer__link {
  color: var(--text-2);
  text-decoration: none;
  font-size: var(--font-size-0);
}

.footer__link:hover {
  color: var(--text-1);
  text-decoration: underline;
}

/* Legacy Footer Styles */
.site-footer {
  background-color: var(--surface-2);
  border-top: 1px solid var(--surface-3);
  padding: var(--size-6) 0;
  margin-top: var(--size-8);
}

.site-footer .footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--size-4);
  text-align: center;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: var(--size-6);
  margin-bottom: var(--size-4);
}

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

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

.site-footer .footer-copyright {
  color: var(--text-2);
  font-size: var(--font-size-0);
}