.site-footer {
  display: flex;
  width: min(100% - 52px, var(--content-width));
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding: 30px 0 38px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
}

.site-footer p {
  max-width: 390px;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer nav {
  display: flex;
  max-width: 620px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.site-footer a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.noscript-notice {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #fff;
  color: #071638;
  padding: 32px;
  font: 600 18px/1.6 system-ui, sans-serif;
  text-align: center;
}

.noscript-notice a {
  color: #075de8;
}

@media (max-width: 760px) {
  .site-footer {
    width: min(100% - 32px, 640px);
    flex-direction: column;
    gap: 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
