:root {
  --sr-footer-navy: #0e2440;
  --sr-footer-navy-interactive: #2e5a93;
  --sr-footer-navy-accent: #b9cbe3;
  --sr-footer-paper: #fff;
  --sr-footer-font-sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --sr-footer-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.sr-site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--sr-footer-paper);
  background: var(--sr-footer-navy);
  border: 0;
  font-family: var(--sr-footer-font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-transform: none;
}

.sr-site-footer::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  top: -290px;
  right: 3%;
  border: 1px solid rgba(185, 203, 227, .28);
  border-radius: 50%;
  box-shadow:
    0 0 0 62px rgba(185, 203, 227, .045),
    0 0 0 124px rgba(185, 203, 227, .025);
  pointer-events: none;
}

.sr-footer-shell {
  position: relative;
  width: min(calc(100% - 48px), 1380px);
  margin-inline: auto;
  padding: 48px 0 32px;
}

.sr-footer-brand-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 550px);
  gap: 40px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.sr-footer-logo-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
}

.sr-footer-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  margin: 0;
  object-fit: contain;
}

.sr-footer-logo {
  width: 190px;
  height: auto;
  margin: 0;
  filter: none;
}

.sr-footer-brand-row p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-family: var(--sr-footer-font-sans);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
}

.sr-footer-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
  padding: 40px 0;
}

.sr-footer-group:last-child {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.sr-footer-heading {
  margin: 0;
  color: var(--sr-footer-navy-accent);
  font-family: var(--sr-footer-font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sr-footer-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.sr-footer-list li,
.sr-footer-list li + li {
  margin: 0;
}

.sr-footer-list a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .84);
  font-family: var(--sr-footer-font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  text-underline-offset: 5px;
}

.sr-footer-list a:hover {
  color: var(--sr-footer-paper);
  text-decoration: underline;
}

.sr-footer-list a:focus-visible,
.sr-footer-logo-link:focus-visible {
  outline: 2px solid var(--sr-footer-paper);
  outline-offset: 3px;
}

.sr-footer-external {
  margin-left: 8px;
  font-size: 14px;
}

.sr-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--sr-footer-font-sans);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.sr-footer-bottom span:last-child {
  font-family: var(--sr-footer-font-mono);
}

@media (max-width: 1120px) {
  .sr-footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sr-footer-group:last-child {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .sr-footer-shell {
    width: min(calc(100% - 32px), 1380px);
  }

  .sr-footer-brand-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sr-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
}

@media (max-width: 420px) {
  .sr-footer-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .sr-footer-logo {
    width: 174px;
  }

  .sr-footer-nav {
    grid-template-columns: 1fr;
  }

  .sr-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sr-site-footer *,
  .sr-site-footer *::before,
  .sr-site-footer *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .sr-site-footer {
    color: #2c2c2a;
    background: #fff;
    border-top: 1px solid #d8d5cc;
  }

  .sr-site-footer::before,
  .sr-footer-nav {
    display: none;
  }

  .sr-footer-brand-row,
  .sr-footer-bottom {
    color: #2c2c2a;
    border-color: #d8d5cc;
  }

  .sr-footer-brand-row p,
  .sr-footer-bottom {
    color: #444441;
  }
}
