:root {
  color-scheme: light;
  --paper: #fcf9f8;
  --white: #ffffff;
  --ink: #1c1b1b;
  --slate: #434653;
  --line: #c3c6d5;
  --soft: #f0edec;
  --blue: #0040a8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 18px;
}

h2 {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0;
  margin-bottom: 10px;
}

section {
  background: var(--white);
  border: 1px solid #e5e2e1;
  border-radius: 8px;
  margin: 12px 0;
  padding: 22px;
}

.summary {
  color: var(--slate);
  font-size: 18px;
  max-width: 640px;
}

.updated {
  background: var(--soft);
  border-radius: 4px;
  color: var(--slate);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0 0;
  padding: 6px 10px;
}

section p:last-child {
  margin-bottom: 0;
}
