:root {
  color-scheme: light;
  --paper: #faf8f1;
  --ink: #263a34;
  --muted: #53635b;
  --line: #d6ded2;
  --accent: #20694e;
  --wash: #edf1e7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
a {
  color: var(--accent);
  text-underline-offset: 0.22em;
  overflow-wrap: anywhere;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
  border-radius: 2px;
}
.skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  padding: 0.4rem 1rem;
  background: white;
  z-index: 1;
}
.skip:focus {
  top: 1rem;
}
.wrap {
  max-width: 1120px;
  padding: 0 32px;
  margin: 0 auto;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 25px;
}
.brand {
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--paper);
  width: 37px;
  height: 37px;
  margin-right: 9px;
  border-radius: 11px;
  font-family: Georgia, serif;
  font-weight: 400;
}
.languages {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 14px;
}
.languages [aria-current="true"] {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-bottom: 19px;
  font-size: 15px;
}
.page-nav a {
  color: var(--muted);
  text-decoration: none;
}
.page-nav [aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}
main.wrap {
  padding-block: 58px 80px;
  min-height: 58vh;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
h1,
h2 {
  font-family: Georgia, "Yu Mincho", "Noto Serif", serif;
  line-height: 1.25;
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  letter-spacing: -0.025em;
  margin: 0 0 23px;
  max-width: 920px;
}
h2 {
  font-size: 27px;
  margin: 0 0 16px;
}
p {
  margin: 0 0 17px;
}
.intro {
  font-size: 19px;
  color: var(--muted);
  max-width: 750px;
}
.updated {
  font-size: 13px;
  color: var(--muted);
  margin: 22px 0 0;
}
.notice {
  border-left: 3px solid var(--accent);
  background: var(--wash);
  margin: 27px 0 0;
  padding: 17px 22px;
  max-width: 800px;
  font-size: 15px;
}
.notice p:last-child {
  margin: 0;
}
.document {
  max-width: 800px;
}
.document section {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 30px;
  scroll-margin-top: 24px;
}
.document ul {
  padding-left: 23px;
  margin: 0 0 18px;
}
.document li {
  padding-left: 3px;
  margin-bottom: 8px;
}
.document .links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 15px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 25px;
  text-decoration: none;
  background: #fffefa;
  min-height: 124px;
}
.card:hover {
  border-color: var(--accent);
  background: var(--wash);
}
.card strong {
  display: block;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}
.card span {
  color: var(--muted);
  font-size: 15px;
}
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer-row {
  padding-block: 29px 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-row p {
  margin: 0;
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding-inline: 21px;
  }
  .header-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    padding-block: 21px;
  }
  .languages {
    justify-content: flex-start;
    gap: 9px 21px;
  }
  .page-nav {
    gap: 9px 20px;
    font-size: 14px;
  }
  main.wrap {
    padding-block: 36px 54px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
  }
  .intro {
    font-size: 18px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .card {
    min-height: 105px;
    padding: 21px;
  }
  .notice {
    padding: 15px 17px;
  }
}
