/* Authoritative footer presentation shared by every public template. */
body .site-footer {
  padding: 92px 0 30px;
  border-top: 0;
  color: #fff;
  background: #050914;
}

body .site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(150px, .55fr) minmax(210px, .65fr);
  gap: clamp(48px, 7vw, 105px);
  padding-bottom: 70px;
}

body .site-footer .brand-footer,
body .site-footer .brand-footer:hover,
body .site-footer a {
  color: #fff;
}

body .site-footer .brand-descriptor {
  color: #77839a;
}

body .site-footer .footer-tagline {
  max-width: 520px;
  margin: 24px 0 0;
  color: #aab3c2;
  font-family: Inter,"Noto Sans SC","Microsoft YaHei",sans-serif;
  font-size: clamp(16px,1.4vw,20px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.01em;
}

body .site-footer .footer-navigation .menu {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .site-footer .footer-navigation li,
body .site-footer .footer-navigation a {
  margin: 0;
  padding: 0;
}

body .site-footer .footer-navigation a,
body .site-footer .footer-contact a {
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
  transition: color .2s ease;
}

body .site-footer .footer-navigation a:hover,
body .site-footer .footer-contact a:hover {
  color: #76a9ff;
}

body .site-footer .footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

body .site-footer .footer-contact .eyebrow {
  margin: 0 0 13px;
  color: #76a9ff;
}

body .site-footer .footer-contact a {
  overflow-wrap: anywhere;
}

body .site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #788397;
  font-size: 12px;
}

body .site-footer .footer-bottom a {
  color: inherit;
}

body .site-footer .footer-registration {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 420px;
  flex-wrap: wrap;
  gap: 8px 18px;
  text-align: center;
}

body .site-footer .footer-registration a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

body .site-footer .footer-registration a:hover {
  color: #fff;
}

body .site-footer .public-security-badge {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

@media (max-width: 980px) {
  body .site-footer .footer-grid {
    grid-template-columns: minmax(0,1fr) minmax(150px,.55fr);
  }

  body .site-footer .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body .site-footer {
    padding-top: 72px;
  }

  body .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 54px;
  }

  body .site-footer .footer-grid > div:first-child {
    grid-column: auto;
  }

  body .site-footer .footer-navigation .menu {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px 24px;
  }

  body .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  body .site-footer .footer-registration {
    align-items: flex-start;
    justify-content: flex-start;
    flex: none;
    flex-direction: column;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .site-footer a {
    transition: none;
  }
}
