:root { 
  color-scheme: light dark; 
  --body-text: color-mix(in oklab, CanvasText 88%, transparent);
}

@media (prefers-color-scheme: dark) {
  :root { --body-text: color-mix(in oklab, CanvasText 84%, transparent); }
}

@media (prefers-contrast: more) {
  :root { --body-text: CanvasText; }
  a { color: LinkText; }
  hr { background: CanvasText; }
}

@media (forced-colors: active) {
  a { color: LinkText; }
  hr { background: CanvasText; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: Canvas;
  color: var(--body-text);
  margin: 0;
  font-family: system-ui, -apple-system, "SF Pro Text", "New York", Helvetica, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-size: 1.1rem;
}

main {
  max-width: 68ch;
  margin: 0 auto;
  padding: 2.75rem 1.125rem;
}

h1, h2, h3 { letter-spacing: -0.01em; }

h1 { font-weight: 700; font-size: 2.25rem; margin: 0 0 1rem 0; }
h2 { font-weight: 600; font-size: 1.35rem; margin: 1.75rem 0 0.75rem 0; }
h3 { font-weight: 600; margin: 1.75rem 0 0.375rem 0; }

p { margin: 0 0 0.875rem 0; }

ul { margin: -0.5rem 0 0.875rem 0; 
  padding-left: 1.2em; 
  
}
li { }

p, li { overflow-wrap: anywhere; }

p + p {
  margin-top: 1em;
}

hr {
  border: none;
  height: 1px;
  background: color-mix(in oklab, CanvasText 12%, transparent);
  margin: 2rem 0;
}

a {
  color: color-mix(in oklab, LinkText 75%, CanvasText 25%);
  text-decoration: none;
}

footer {
  margin-top: 1.75rem;
}
.meta {  font-size: 0.75rem; }
.pull {
  font-style: italic;
  opacity: 0.85;
}
.prose {
  max-width: 62ch;
}