.page-footer {
  width: 100%;
  max-width: none;
  margin-top: clamp(64px, 8vw, 104px);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #101d33;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer__inner {
  display: grid;
  width: min(100%, calc(var(--content-max-width) + (var(--page-gutter) * 2)));
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.9fr) minmax(220px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) var(--page-gutter);
}

.site-footer__brand,
.site-footer__policies,
.site-footer__company {
  min-width: 0;
}

.site-footer__eyebrow,
.site-footer__heading {
  margin: 0 0 12px;
  color: #8eb8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__brand h2 {
  max-width: 420px;
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.site-footer__brand p:last-child,
.site-footer__company p:last-child {
  margin: 0;
}

.site-footer__brand strong {
  color: #fff;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer a {
  width: fit-content;
  color: #fff;
  text-decoration-color: rgba(142, 184, 255, 0.64);
  text-underline-offset: 4px;
}

.site-footer a:hover {
  color: #b9d1ff;
}

.site-footer a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(142, 184, 255, 0.48);
  outline-offset: 3px;
}

.site-footer__links span[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__company {
  display: grid;
  align-content: start;
  gap: 13px;
}

.site-footer__company .site-footer__heading {
  margin-bottom: 0;
}

.is-mobile .page-footer {
  margin-top: 56px;
  padding: 0;
}

.is-mobile .site-footer__inner {
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px var(--mobile-page-gutter);
}
