:root {
  color-scheme: light;
  --ink: #16191f;
  --muted: #596170;
  --line: #dfe4eb;
  --surface: #ffffff;
  --accent: #176f5f;
  --accent-strong: #0f4f44;
  --wash: #f5f7fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--wash);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.page {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.updated {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 36px 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

a {
  color: var(--accent);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-strong);
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.link-list a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
