/* Footer legal navigation
   Keeps legal and utility links discoverable without adding them to the main
   navigation or increasing the visual weight of the footer. */

.site-footer .footer-nav-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: clamp(38px, 5vw, 74px);
  margin-left: auto;
}

.site-footer .footer-nav-group {
  min-width: 0;
}

.site-footer .footer-nav-label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer .footer-nav-group .footer-links,
.site-footer .footer-legal-links {
  display: grid;
  justify-items: start;
  gap: 11px;
}

.site-footer .footer-nav-group .footer-links a,
.site-footer .footer-legal-links a {
  position: relative;
  font-size: 12px;
  color: var(--soft);
  transition: color .25s ease, transform .25s ease;
}

.site-footer .footer-nav-group .footer-links a:hover,
.site-footer .footer-legal-links a:hover {
  color: var(--text);
  transform: translateX(3px);
}

@media (max-width: 760px) {
  .site-footer .footer-nav-groups {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-nav-groups {
    grid-template-columns: 1fr;
  }
}
