.site-header,
.site-footer {
  --site-shell-blue: #168cf2;
  --site-shell-navy: #07162e;
  --site-shell-text: #526176;
  --site-shell-line: #e2e8f0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--site-shell-line);
  box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
}

.site-header .nav-inner {
  width: min(1160px, 92vw);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.site-header__brand img {
  display: block;
  width: 190px;
  max-width: 42vw;
  max-height: 50px;
}

.site-header__links,
.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__link,
.site-footer__link {
  text-decoration: none !important;
  transition: color .2s ease, opacity .2s ease;
}

.site-header__link {
  color: var(--site-shell-text) !important;
  font-size: 15px;
  font-weight: 600;
}

.site-header__link:hover,
.site-header__link:focus,
.site-header__link[aria-current="page"] {
  color: var(--site-shell-blue) !important;
}

.site-header__link[aria-current="page"] {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 8px;
}

.site-footer {
  margin: 0;
  padding: 42px 0 30px;
  color: #cbd5e1;
  background: var(--site-shell-navy);
  text-align: center;
}

.site-footer__inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.site-footer__brand img {
  display: block;
  width: 180px;
  max-height: 48px;
}

.site-footer__link {
  color: #dbeafe !important;
  font-size: 15px;
  font-weight: 600;
}

.site-footer__link:hover,
.site-footer__link:focus,
.site-footer__link[aria-current="page"] {
  color: #54c6ff !important;
}

.site-footer__copyright {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
}

body.is-webview [data-site-header],
body.is-webview [data-site-footer] {
  display: none !important;
}

@media (max-width: 820px) {
  .site-header .nav-inner {
    min-height: 0;
    padding: 14px 0 16px;
    flex-direction: column;
    gap: 14px;
  }

  .site-header__links {
    gap: 9px 18px;
  }

  .site-header__link {
    font-size: 14px;
  }
}

@media print {
  [data-site-header],
  [data-site-footer] {
    display: none !important;
  }
}
