:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #1a1a1a;
  --rule: #e5e5e5;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111111;
    --fg: #e8e8e8;
    --muted: #9a9a9a;
    --accent: #e8e8e8;
    --rule: #2a2a2a;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
header, main, footer, article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
header { padding-top: 4rem; padding-bottom: 2rem; }
h1, h2, h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.25rem; margin: 0 0 0.5rem; }
h2 { font-size: 1.375rem; margin: 2.5rem 0 1rem; }
.kicker {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 1rem;
}
.tagline { font-size: 1.25rem; color: var(--muted); margin: 0; font-style: italic; }
a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
.notes { list-style: none; padding: 0; margin: 0; }
.notes li { padding: 0.75rem 0; border-bottom: 1px solid var(--rule); }
.notes li:last-child { border-bottom: none; }
.notes time {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
}
.meta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 2rem;
}
article { padding-top: 4rem; }
article p { margin: 0 0 1.25rem; }
.back { margin-bottom: 2rem; font-size: 1rem; }
footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--rule);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9375rem;
}
.colophon { color: var(--muted); font-size: 0.8125rem; }
