:root {
  color-scheme: light dark;
  --bg: #f7f3ea;
  --ink: #1f2328;
  --muted: #5f6670;
  --line: #ded6c8;
  --accent: #9b4d2f;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #15171a;
    --ink: #f3efe7;
    --muted: #b8b0a5;
    --line: #34302b;
    --accent: #e6a36f;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 17px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.55;
}

.page {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 84px) 0 56px;
}

.intro {
  margin-bottom: 34px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  font-size: clamp(1.9rem, 5vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lede {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

section {
  margin-top: 34px;
}

h2 {
  margin-bottom: 10px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding-left: 1.25rem;
}

li {
  margin: 0.52rem 0;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--ink);
}

.links {
  columns: 2;
}

footer {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 560px) {
  html {
    font-size: 16px;
  }

  .page {
    width: min(100% - 28px, 720px);
  }

  .links {
    columns: 1;
  }
}
