:root {
  color-scheme: light;
  --ink: #20171a;
  --muted: #6d6266;
  --rule: #e5dddf;
  --background: #fbf8f6;
  --accent: #6f2034;
}

* {
  box-sizing: border-box;
}

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

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

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

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

h1,
h2 {
  line-height: 1.2;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  margin: 2rem 0 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 1.15rem;
}

p {
  margin: 0.85rem 0 0;
}

.updated {
  margin-top: 0.5rem;
  color: var(--muted);
}
