/* demo11 · journalists
 * Newsprint feel. Restrained. Serious. Dark navy + paper white.
 * No imagery, no animations, no playfulness.
 */

:root {
  --paper: #f5f3ed;
  --ink: #14171f;
  --rule: #8a8d96;
  --accent: #1a3160;     /* navy */
  --redact: #14171f;
  --muted: #545864;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  background-image: radial-gradient(rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  color: var(--ink);
  font: 17px/1.65 ui-serif, "Iowan Old Style", "Charter", Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
em { font-style: italic; }
strong { font-weight: 700; }
code { font-family: ui-monospace, "Menlo", monospace; font-size: 0.9em; background: rgba(0,0,0,0.05); padding: 1px 4px; }

.masthead {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  text-align: center;
  border-bottom: 4px double var(--ink);
}
.rule-top {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  font-variant: small-caps;
}
.masthead h1 {
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 20px;
}
.dek {
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
  max-width: 720px;
  margin: 0 auto;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.lead {
  max-width: 38em;
  margin: 0 auto;
  padding: 32px 0;
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
}
.lead p { margin-bottom: 16px; }
.firstpara::first-letter {
  font-size: 4em;
  float: left;
  line-height: 0.85;
  margin: 0.04em 0.08em 0 0;
  font-weight: 900;
  color: var(--accent);
}
.redact {
  background: var(--redact);
  color: var(--redact);
  padding: 0 6px;
  user-select: none;
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 32px auto;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 16px 0 32px;
}
.cell h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  font-weight: 700;
}
.cell ul { padding-left: 20px; }
.cell li { padding: 6px 0; font-size: 16px; }
.footnote { font-size: 14px; color: var(--muted); margin-top: 12px; font-style: italic; }

.threat { padding: 24px 0; }
.threat h2 {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 24px;
}
.threat table { width: 100%; border-collapse: collapse; }
.threat td {
  padding: 16px 16px 16px 0;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
}
.threat td.t {
  width: 38%;
  font-weight: 600;
  border-right: 1px solid var(--rule);
  padding-right: 24px;
}
.threat td.r { padding-left: 24px; color: var(--ink); }

.alongside {
  background: rgba(26,49,96,0.06);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 17px;
  line-height: 1.65;
}
.alongside h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 700;
}

.how { padding: 24px 0; }
.how h2 {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 16px;
}
.how ol {
  padding-left: 24px;
  font-size: 17px;
}
.how li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--rule);
}
.how li:last-child { border-bottom: 0; }

.dl {
  padding: 24px 0;
}
.dl h2 {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 6px;
}
.dl p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.dl ul { list-style: none; }
.dl li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
}
.dl li:first-child { border-top: 2px solid var(--ink); }
.dl li a { display: block; color: var(--ink); }
.dl li a:hover { color: var(--accent); padding-left: 8px; transition: padding 0.15s; }

.colophon {
  max-width: 38em;
  margin: 32px auto 64px;
  padding: 0 32px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: justify;
}
.colophon p { margin: 12px 0; }
.colophon strong { color: var(--ink); font-variant: small-caps; }
.colophon .meta { font-style: italic; margin-top: 16px; }

::selection { background: var(--accent); color: var(--paper); }

@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; gap: 24px; }
  .threat td.t { width: auto; border-right: 0; padding-right: 0; padding-bottom: 0; }
  .threat td.r { padding-left: 0; padding-top: 4px; }
}
