:root {
  --ink: #13212b;
  --muted: #52616c;
  --line: #d7e0e5;
  --ocean: #087f8c;
  --deep: #123d4a;
  --coral: #c4543d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: var(--ocean);
  text-underline-offset: 3px;
}

header,
main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 14px;
}

main {
  padding: 68px 0 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 46px;
  line-height: 1.08;
}

h2 {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: 24px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.document-lead {
  margin-top: 22px;
  color: var(--ink);
  font-size: 17px;
}

.notice {
  margin-top: 26px;
  padding: 16px 18px;
  border-inline-start: 4px solid var(--coral);
  background: #fff7f3;
  color: #713727;
}

section {
  padding-top: 40px;
}

@media (max-width: 620px) {
  header,
  main {
    width: min(100% - 28px, 760px);
  }

  header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  nav {
    justify-content: flex-start;
  }

  main {
    padding-top: 46px;
  }

  h1 {
    font-size: 36px;
  }
}

/* The language picker. Fifty links have to read as a quiet index rather than a
   wall, so they sit small and dim and wrap freely; the current one is the only
   one that is not a link and is marked as such for a screen reader. */
.foot-locales{ display:flex; flex-wrap:wrap; gap:6px 14px; margin-top:18px; }
.foot-locales a{ color:var(--ink-faint,#7a8a92); font-size:13px; text-decoration:none; }
.foot-locales a:hover{ color:var(--ink,#e9f3f5); }
.foot-locales a[aria-current]{ color:var(--ink,#e9f3f5); font-weight:600; }
