/* =========================================================
   Talk to the Past — marketing site
   Matches the iOS app's design language: cream paper,
   ink-blue type, IM Fell English + Cutive Mono + Special Elite
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

:root {
  --paper:         #EDE2C8;
  --paper-warm:    rgba(189, 154, 98, 0.10);
  --paper-cool:    rgba(120, 90, 50, 0.08);
  --ink:           #1D2A4A;
  --ink-65:        rgba(29, 42, 74, 0.65);
  --ink-55:        rgba(29, 42, 74, 0.55);
  --ink-40:        rgba(29, 42, 74, 0.40);
  --ink-30:        rgba(29, 42, 74, 0.30);
  --ink-18:        rgba(29, 42, 74, 0.18);
  --ink-04:        rgba(29, 42, 74, 0.04);
  --dispatch-fill: rgba(248, 240, 220, 0.55);
  --fleck:         rgba(80, 50, 20, 0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'IM Fell English', Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  background-image:
    radial-gradient(ellipse at 25% 12%, var(--paper-warm) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 88%, var(--paper-cool) 0%, transparent 60%),
    radial-gradient(circle, var(--fleck) 1px, transparent 1.6px);
  background-size: auto, auto, 9px 9px;
  background-attachment: fixed, fixed, scroll;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 0.5px; text-underline-offset: 4px; }

img { max-width: 100%; display: block; }

/* ===== Layout primitives ===== */

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.hairline {
  height: 0.5px;
  background: var(--ink-30);
  border: 0;
}

.eyebrow {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.eyebrow-flanked {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-flanked::before, .eyebrow-flanked::after {
  content: '';
  width: 24px; height: 0.5px;
  background: var(--ink-40);
}

/* ===== Site header ===== */

.site-header {
  padding: 28px 0 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 0.5px solid var(--ink-30);
}

.site-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.site-mark img { width: 100%; height: 100%; object-fit: cover; }

.site-wordmark {
  font-family: 'IM Fell English', serif;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.site-wordmark em {
  font-style: italic;
  color: var(--ink-65);
  font-weight: 400;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-65);
}

@media (max-width: 540px) {
  .site-nav { display: none; }
}

/* ===== Hero ===== */

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.hero-title .non-italic { font-style: normal; }

.hero-deck {
  font-family: 'IM Fell English', serif;
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--ink-65);
  font-style: italic;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.45;
}

.hero-cta {
  margin-top: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Special Elite', monospace;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 16px 24px;
  border: 0.5px solid var(--ink);
  position: relative;
  cursor: default;
  background: var(--ink-04);
}
.hero-cta-button::before {
  content: '';
  position: absolute; inset: -3px;
  border: 0.5px solid var(--ink-18);
  pointer-events: none;
}

.hero-cta-note {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-55);
  margin-top: 10px;
}

/* ===== The Conceit ===== */

.section {
  padding: 56px 0;
}

.section-eyebrow {
  text-align: center;
  margin-bottom: 22px;
}

.section-title {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(30px, 4.5vw, 40px);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.1;
}

.section-body {
  font-size: 19px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 18px;
  color: var(--ink);
}

.section-body em { font-style: italic; }

.section-body--center { text-align: center; }

.divider-dots {
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-40);
  padding: 22px 0;
}

/* ===== Embedded chat preview ===== */

.preview {
  display: flex;
  justify-content: center;
  padding: 28px 0 12px;
}

.preview-frame {
  width: 100%;
  max-width: 380px;
  background: var(--paper);
  border-radius: 32px;
  padding: 24px 22px 28px;
  position: relative;
  box-shadow:
    0 0 0 1px var(--ink-18),
    0 0 0 6px rgba(255,255,255,0.4),
    0 30px 60px -20px rgba(0,0,0,0.18),
    0 12px 30px -10px rgba(0,0,0,0.10);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--ink-30);
  margin-bottom: 18px;
}
.preview-mark {
  width: 30px; height: 30px;
  border: 0.75px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-style: italic;
  font-size: 17px;
}
.preview-titles {
  display: flex; flex-direction: column; gap: 2px;
}
.preview-name {
  font-family: 'IM Fell English', serif;
  font-size: 17px;
}
.preview-sub {
  font-family: 'Special Elite', monospace;
  font-size: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.dispatch {
  align-self: flex-end;
  max-width: 86%;
  background: var(--dispatch-fill);
  border: 0.5px solid var(--ink-40);
  padding: 10px 12px 9px;
  margin: 14px 0 14px auto;
  position: relative;
}
.dispatch::before {
  content: '';
  position: absolute; inset: -3px;
  border: 0.5px solid var(--ink-18);
}
.dispatch-meta {
  display: flex; justify-content: space-between;
  font-family: 'Special Elite', monospace;
  font-size: 7.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
  padding-bottom: 6px;
  margin-bottom: 7px;
  border-bottom: 0.5px solid var(--ink-30);
}
.dispatch-body {
  font-family: 'Cutive Mono', monospace;
  font-size: 11px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.letter {
  margin: 16px 0 6px;
  padding-right: 18px;
}
.letter-meta {
  font-family: 'Special Elite', monospace;
  font-size: 7.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.letter-meta::before {
  content: '';
  width: 16px; height: 0.5px; background: var(--ink-40);
}
.letter-body {
  font-family: 'IM Fell English', serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.letter-body em { font-style: italic; }
.letter-sig {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-65);
  margin-top: 10px;
}

/* ===== Features ===== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  padding: 12px 0;
}

.feature {
  border-top: 0.5px solid var(--ink-30);
  padding-top: 18px;
}

.feature-num {
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 8px;
}

.feature-title {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 22px;
  margin-bottom: 6px;
}

.feature-body {
  font-family: 'IM Fell English', serif;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-65);
}

/* ===== Subscription card ===== */

.subscription-card {
  margin: 32px auto 0;
  max-width: 480px;
  padding: 22px 24px;
  border: 0.5px solid var(--ink);
  position: relative;
  background: rgba(248,240,220,0.4);
}
.subscription-card::before {
  content: '';
  position: absolute; inset: -3px;
  border: 0.5px solid var(--ink-18);
}
.subscription-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.subscription-title {
  font-family: 'IM Fell English', serif;
  font-size: 19px;
}
.subscription-meta {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-65);
  margin-top: 3px;
}
.subscription-price {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}
.subscription-price small {
  font-family: 'Special Elite', monospace;
  display: block;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-55);
  font-style: normal;
  margin-top: 3px;
}

/* ===== Footer ===== */

.site-footer {
  margin-top: 48px;
  padding: 36px 0 60px;
  border-top: 0.5px solid var(--ink-30);
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
}

.site-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}

.site-footer-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}

.site-footer-credit {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-55);
}

/* ===== Legal pages ===== */

.legal-page {
  padding: 32px 0 64px;
}

.legal-page h1 {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(34px, 5vw, 44px);
  margin-bottom: 12px;
}

.legal-page .meta {
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 30px;
}

.legal-page h2 {
  font-family: 'IM Fell English', serif;
  font-size: 22px;
  margin: 32px 0 12px;
  letter-spacing: 0.005em;
}

.legal-page h3 {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 18px;
  margin: 22px 0 8px;
  color: var(--ink-65);
}

.legal-page p,
.legal-page li {
  font-family: 'IM Fell English', serif;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-page ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-page strong { font-weight: 400; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 0.5px; }

/* ===== Print ===== */

@media print {
  body { background: white; }
  .site-header, .site-footer { display: none; }
}

/* =========================================================
   Additions — creator credits, FAQ, mobile breakpoints
   ========================================================= */

/* Creator credit list under "The model" section */
.creator-list {
  list-style: none;
  margin: 6px auto 0;
  max-width: 660px;
  padding: 0;
}
.creator-list li {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 0.5px solid var(--ink-18);
  position: relative;
  padding-left: 24px;
}
.creator-list li:last-child { border-bottom: none; }
.creator-list li::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 22px;
  font-style: italic;
  color: var(--ink-55);
}
.creator-list li strong {
  font-weight: normal;
  font-style: italic;
  font-family: 'IM Fell English', Georgia, serif;
  color: var(--ink);
}

/* FAQ — collapsible details/summary, period-styled */
.faq {
  max-width: 720px;
  margin: 18px auto 0;
}
.faq-item {
  border-bottom: 0.5px solid var(--ink-30);
  padding: 6px 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-q {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  cursor: pointer;
  padding: 18px 36px 18px 4px;
  position: relative;
  list-style: none;
  user-select: none;
  min-height: 44px;
  line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--ink-55);
  transition: transform 0.2s ease;
  transform-origin: center;
  line-height: 1;
}
.faq-item[open] .faq-q::after {
  content: "−";
  color: var(--ink);
}
.faq-a {
  padding: 0 4px 22px;
}
.faq-a p {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 10px;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a code {
  font-family: 'Cutive Mono', monospace;
  font-size: 14px;
  background: var(--ink-04);
  padding: 1px 5px;
  border: 0.5px solid var(--ink-18);
}
.faq-a a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-30);
  text-underline-offset: 2px;
}

/* =========================================================
   Mobile responsiveness — the original single 540px
   breakpoint left things awkward at 360-440 widths and at
   640-820 (small tablet / large phone landscape).
   ========================================================= */

@media (max-width: 768px) {
  .container { padding-left: 22px; padding-right: 22px; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  .site-header-inner { padding: 16px 0; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero { padding: 40px 0 32px; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero-deck { font-size: 17px; line-height: 1.55; padding: 0 4px; }
  .section { padding: 44px 0; }
  .section-eyebrow { margin-bottom: 14px; font-size: 10px; }
  .section-title { font-size: 28px; line-height: 1.15; }
  .section-body { font-size: 16px; }
  .features { gap: 28px; }
  .feature-title { font-size: 19px; }
  .feature-body { font-size: 15px; }
  .creator-list li { font-size: 15px; padding: 10px 0 10px 22px; }
  .faq-q { font-size: 17px; padding: 16px 32px 16px 2px; }
  .faq-a p { font-size: 15px; }
  .preview-frame { padding: 22px 18px; }
  .subscription-card { padding: 18px; }
  .subscription-title { font-size: 18px; }
  .subscription-price { font-size: 26px; }
  .site-footer-row { flex-direction: column; gap: 12px; text-align: center; }
  .site-footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  /* Touch targets ≥44pt */
  .site-nav a, .site-footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 24px; }
  .container { padding-left: 18px; padding-right: 18px; }
}

/* =========================================================
   talkie-1930.html — model explainer page
   New classes:
     .model-monogram   — the H1 model id, set in Cutive Mono
     .coverage-list    — press-coverage list (outlet/date/excerpt)
     .coverage-item    — single coverage row with hover affordance
   ========================================================= */

.model-monogram {
  font-family: 'Cutive Mono', monospace;
  font-style: normal;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 5.4vw, 48px);
  line-height: 1.1;
  /* keep model id legible & restrained vs the index hero title */
  word-break: break-word;
}

.coverage-list {
  list-style: none;
  margin: 6px auto 0;
  max-width: 680px;
  padding: 0;
}
.coverage-item {
  border-bottom: 0.5px solid var(--ink-18);
}
.coverage-item:last-child { border-bottom: none; }
.coverage-item a {
  display: block;
  padding: 18px 4px;
  text-decoration: none;
  min-height: 44px;
}
.coverage-item a:hover { text-decoration: none; background: var(--ink-04); }
.coverage-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.coverage-outlet {
  font-family: 'Cutive Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: none;
}
.coverage-date {
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.coverage-excerpt {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-65);
}

@media (max-width: 540px) {
  .coverage-outlet { font-size: 12px; }
  .coverage-date { font-size: 9px; }
  .coverage-excerpt { font-size: 15px; }
}

/* =========================================================
   the-times.html — broadsheet artefact page
   New classes:
     body.broadsheet            — page-level paper tweaks
     .container--wide           — wider container for newspaper feel
     .masthead-wrap, .masthead-* — period broadsheet header
     .broadsheet-article         — single review entry (column layout)
     .broadsheet-headline / -kicker / -byline / -body / -rule
     .dropcap                    — drop-cap on each review's first letter
     .pullquote                  — italic pull-quote inside body
     .broadsheet-divider         — between articles
     .broadsheet-colophon        — closing CTA section
   These classes are scoped to .broadsheet body so they don't leak
   into other pages.
   ========================================================= */

.broadsheet {
  /* slightly more newsprint-y feel: a touch denser fleck */
  background-image:
    radial-gradient(ellipse at 25% 12%, var(--paper-warm) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 88%, var(--paper-cool) 0%, transparent 60%),
    radial-gradient(circle, var(--fleck) 1px, transparent 1.5px);
  background-size: auto, auto, 7px 7px;
}

.container--wide {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container--wide { padding-left: 22px; padding-right: 22px; }
}
@media (max-width: 380px) {
  .container--wide { padding-left: 18px; padding-right: 18px; }
}

/* ---- Masthead ---- */

.masthead-wrap {
  padding: 28px 0 18px;
  text-align: center;
}

.masthead-rule {
  height: 0.5px;
  background: var(--ink);
  border: 0;
  margin: 6px 0;
}
.masthead-rule--double {
  height: 4px;
  background:
    linear-gradient(to bottom,
      var(--ink) 0%, var(--ink) 16%,
      transparent 16%, transparent 84%,
      var(--ink) 84%, var(--ink) 100%);
}

.masthead-toprow,
.masthead-bottomrow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-65);
  padding: 6px 4px;
}

.masthead-title {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: clamp(54px, 12vw, 110px);
  line-height: 1;
  margin: 8px 0 6px;
  letter-spacing: 0.005em;
  color: var(--ink);
}

.masthead-deck {
  max-width: 640px;
  margin: 22px auto 0;
  padding: 0 6px;
}
.masthead-deck p {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-65);
  text-align: center;
}

@media (max-width: 540px) {
  .masthead-toprow,
  .masthead-bottomrow {
    font-size: 8.5px;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
  }
  .masthead-deck p { font-size: 15px; }
}

/* ---- Broadsheet article ---- */

.broadsheet-article {
  padding: 36px 0 24px;
  /* narrow text column for newspaper-y line lengths (~45-65 chars) */
}

.broadsheet-kicker {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-55);
  text-align: center;
  margin-bottom: 14px;
}

.broadsheet-headline {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 38px);
  line-height: 1.1;
  text-align: center;
  margin: 0 auto 12px;
  max-width: 720px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.broadsheet-byline {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-65);
  text-align: center;
  margin-bottom: 16px;
}

.broadsheet-rule {
  width: 80px;
  height: 0.5px;
  background: var(--ink-40);
  margin: 0 auto 24px;
}

.broadsheet-body {
  max-width: 600px;
  margin: 0 auto;
  /* line-length target: ~45-65 chars at desktop */
}

.broadsheet-body p {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 16px;
  /* small text-indent gives the newspapery look on continuing paragraphs */
  text-indent: 1.6em;
}
.broadsheet-body p:first-of-type {
  text-indent: 0;
}
.broadsheet-body em { font-style: italic; }

.dropcap {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  float: left;
  font-size: 4em;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--ink);
}

.pullquote {
  font-family: 'IM Fell English', Georgia, serif;
  font-style: italic;
  font-size: 22px !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  text-align: center;
  text-indent: 0 !important;
  border-top: 0.5px solid var(--ink-30);
  border-bottom: 0.5px solid var(--ink-30);
  padding: 16px 8px !important;
  margin: 18px 0 !important;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.broadsheet-divider {
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 14px;
  letter-spacing: 0.5em;
  color: var(--ink-40);
  padding: 12px 0 18px;
}

@media (max-width: 540px) {
  .broadsheet-article { padding: 28px 0 18px; }
  .broadsheet-headline { font-size: 24px; }
  .broadsheet-body p { font-size: 16.5px; line-height: 1.6; }
  .dropcap { font-size: 3.2em; padding: 4px 8px 0 0; }
  .pullquote { font-size: 18px !important; }
}

/* ---- Colophon / closing CTA ---- */

.broadsheet-colophon {
  padding: 28px 0 24px;
  text-align: center;
}

.colophon-body {
  font-family: 'IM Fell English', Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-65);
  max-width: 620px;
  margin: 22px auto 0;
}

.colophon-foot {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-top: 22px;
}
.colophon-foot a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink-30);
  text-underline-offset: 3px;
  /* keep tap target reasonable */
  display: inline-block;
  min-height: 28px;
}

@media (max-width: 540px) {
  .colophon-body { font-size: 15px; }
  .colophon-foot { font-size: 10px; letter-spacing: 0.18em; }
}
