:root {
  --paper: #fff;
  --ink: #111318;
  --muted: #5c6269;
  --line: #dfe2e5;
  --soft: #f5f6f7;
  --accent: #1f394f;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", "SF Mono", "Cascadia Mono", "Roboto Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.fiction-bar {
  padding: 9px 20px;
  background: #08101a;
  color: rgba(255, 255, 255, 0.79);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.fiction-bar a { color: #fff; text-underline-offset: 3px; }

.verran-header {
  border-bottom: 1px solid var(--line);
}

.verran-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
}

.verran-name {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.verran-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.verran-social,
.archive-return {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  text-decoration: none;
}

.verran-social {
  font-weight: 600;
}

.verran-social:hover,
.archive-return:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.verran-sections {
  border-top: 1px solid var(--line);
}

.verran-section-inner {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  gap: 28px;
  padding: 11px 0;
  overflow-x: auto;
  color: #3d4247;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  white-space: nowrap;
}

.verran-section-inner .active { color: var(--ink); }

.article-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.article-head {
  width: 100%;
  padding: 58px 0 32px;
}

.article-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-head h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.9vw, 72px);
  line-height: 1.035;
  font-weight: 700;
  letter-spacing: -0.046em;
}

.article-dek {
  max-width: 880px;
  margin: 24px 0 0;
  color: #474c52;
  font-family: var(--serif);
  font-size: clamp(20px, 2.25vw, 25px);
  line-height: 1.42;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

.article-meta strong { color: var(--ink); font-weight: 650; }

.article-rule {
  height: 1px;
  background: var(--line);
}

.article-hero {
  width: 100%;
  margin: 34px 0 0;
}

.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  background: #eef1f4;
}

.article-hero figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: clamp(50px, 8vw, 110px);
  padding: 42px 0 96px;
}

.article-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.68;
}

.article-body p { margin: 0 0 1.18em; }

.dateline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.article-aside {
  align-self: start;
  padding-top: 5px;
  border-top: 3px solid var(--ink);
}

.article-aside h2 {
  margin: 14px 0 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.article-aside a { text-underline-offset: 3px; }

.verran-footer {
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.verran-footer-inner {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  gap: 20px;
}

.footer-social {
  margin-left: 6px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.footer-social:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .article-layout { grid-template-columns: 1fr; gap: 36px; padding-bottom: 72px; }
  .article-aside { max-width: 520px; }
}

@media (max-width: 560px) {
  .fiction-bar { padding-inline: 14px; font-size: 8px; }
  .verran-top { width: calc(100% - 30px); min-height: 70px; }
  .verran-section-inner,
  .article-shell,
  .verran-footer-inner { width: calc(100% - 30px); }
  .verran-actions { gap: 12px; }
  .verran-social,
  .archive-return { font-size: 11px; }
  .article-head { padding-top: 42px; }
  .article-hero { margin-top: 26px; }
  .article-head h1 { font-size: clamp(38px, 12vw, 54px); }
  .article-body { font-size: 18px; }
  .verran-footer-inner { flex-direction: column; }
}
