:root {
  --paper: #faf9f5;
  --ink: #171717;
  --muted: #6b6b6b;
  --rule: #bdbdbd;
  --link: #0000ee;
  --visited: #551a8b;
  --content-width: 640px;
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.45;
}
a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:visited { color: var(--visited); }
a:hover, a:focus-visible { color: #777; }
.site-shell { width: min(calc(100% - 40px), 860px); margin: 22px 24px 80px clamp(16px, 11vw, 180px); }
.site-header { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 34px; font-family: "Times New Roman", Times, serif; font-size: 12px; }
.site-name { font-family: "Times New Roman", Times, serif; font-size: 18px; }
.site-name a { color: var(--ink); text-decoration: none; }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 12px; }
.site-nav a { font-family: "Times New Roman", Times, serif; }
.site-nav a[aria-current="page"] { color: var(--ink); text-decoration-style: dotted; }
main, .site-footer { max-width: var(--content-width); }
h1, h2, h3 { font-weight: normal; line-height: 1.15; }
h1 { max-width: 580px; margin: 0 0 14px; font-size: clamp(24px, 4vw, 34px); }
h2 { margin: 30px 0 12px; font-size: 20px; }
p { max-width: 68ch; margin: 0 0 16px; }
.lede { font-size: 17px; }
.eyebrow, .post-meta, .site-footer, .back-link { font-family: "Times New Roman", Times, serif; font-size: 11px; line-height: 1.35; }
.eyebrow, .post-meta, .site-footer { color: var(--muted); }
.eyebrow { letter-spacing: .04em; text-transform: uppercase; }
.post-list { margin: 0; }
.post-item { padding: 12px 0 15px; border-top: 1px dotted var(--rule); }
.post-item:last-child { border-bottom: 1px dotted var(--rule); }
.post-item h2 { margin: 4px 0 4px; font-size: 19px; }
.post-item h2 a { color: var(--ink); }
.post-item h2 a:hover, .post-item h2 a:focus-visible { color: var(--link); }
.post-excerpt { margin: 0; }
.article-header { margin-bottom: 28px; }
.article-header h1 { margin-top: 8px; }
.article-body { max-width: 620px; }
.article-body p { max-width: 68ch; }
.article-body blockquote { margin: 24px 0; padding-left: 16px; border-left: 2px solid var(--ink); font-style: italic; }
.site-footer { margin-top: 54px; padding-top: 12px; border-top: 1px solid var(--rule); }
.site-footer p { margin-bottom: 8px; }
@media (max-width: 700px) {
  .site-shell { width: auto; margin: 18px 18px 56px; }
  .site-header { margin-bottom: 28px; }
  .site-nav { flex-basis: 100%; }
}
