:root {
  color-scheme: light;
  --ink: #17252a;
  --muted: #5d6c70;
  --paper: #fbfcfa;
  --card: #ffffff;
  --line: #dce4e1;
  --accent: #006b68;
  --accent-soft: #dcefed;
  --warm: #c95c35;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--accent); }
.shell { width: min(920px, calc(100% - 2rem)); margin: 0 auto; }
.site-header { padding: 4.5rem 0 2.5rem; border-bottom: 1px solid var(--line); }
.eyebrow { color: var(--warm); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.7rem, 8vw, 5.2rem); line-height: .98; margin: .4rem 0 1rem; letter-spacing: -.045em; }
.subtitle { max-width: 650px; color: var(--muted); font-size: 1.15rem; }
nav { display: flex; gap: 1.25rem; padding-top: 1.25rem; }
nav a { font-weight: 700; text-decoration: none; }
main { padding: 2.5rem 0 5rem; }
.issue-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 2.5rem; }
.issue-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.date-window { color: var(--muted); white-space: nowrap; }
.category { margin: 3rem 0 1.25rem; padding-bottom: .55rem; border-bottom: 3px solid var(--accent); font-size: 1.35rem; }
.article { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.article h3 { margin: 0 0 .55rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; line-height: 1.25; }
.article h3 a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article p { margin: .4rem 0; }
.tags { color: var(--muted); font-size: .88rem; }
.tag { display: inline-block; margin: .3rem .25rem 0 0; padding: .14rem .48rem; border-radius: 999px; background: #edf1ef; }
.archive-list { list-style: none; padding: 0; }
.archive-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.archive-list a { font-weight: 750; }
.empty { padding: 2rem; border: 1px dashed var(--line); border-radius: 10px; color: var(--muted); }
footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
@media (max-width: 620px) {
  .site-header { padding-top: 3rem; }
  .issue-heading, .archive-list li { display: block; }
  .date-window { margin-top: .4rem; }
}
