/*
 * WT-WEB-AUDIT-011
 * Preserve the approved horizontal footer lockup at a readable brand-recognition
 * scale while retaining the compact, normal-flow footer information architecture.
 */

html .site-footer.site-footer--enhanced .footer-logo {
  width: clamp(140px, 12.5vw, 175px);
  max-height: 62px;
}

@media (max-width: 760px) {
  html .site-footer.site-footer--enhanced .footer-logo {
    width: min(155px, 44vw);
    max-height: 58px;
  }
}

@media (max-width: 360px) {
  html .site-footer.site-footer--enhanced .footer-grid {
    grid-template-columns: minmax(141px, auto) minmax(0, 1fr);
    gap: 3px 6px;
  }

  html .site-footer.site-footer--enhanced .footer-secondary {
    justify-self: end;
  }

  html .site-footer.site-footer--enhanced .footer-secondary > summary {
    min-height: 44px;
    gap: 4px;
    padding-inline: 4px;
    font-size: .60rem;
    letter-spacing: .025em;
    white-space: nowrap;
  }
}
