/* news-event / front-page
   A broadsheet's front page: newsprint with a grain, the project's name as a
   blackletter nameplate between two boxed ears (the motto, the contract), a
   thick-and-thin rule over the dateline, a banner headline in bold Times, the hero
   art as the lead photo with a caption, the story in a justified column under a
   blackletter drop cap, "What we know" as the at-a-glance box, the punchiest
   reaction as a pull quote. Below it the paper goes on: department flags, the source
   post as a clipping under tape, a ruled chronology, voices in ruled columns, a
   picture spread, Q&A, and the contract as a cut-out classified.
   Black ink and one spot colour (the brand's); nothing rounded, nothing glowing. */

:root {
  --fp-paper: color-mix(in srgb, var(--wl-bg) 6%, #f1ebdc);
  --fp-paper-2: color-mix(in srgb, #3b2f1c 6%, var(--fp-paper));
  --fp-paper-hi: color-mix(in srgb, #ffffff 55%, var(--fp-paper));
  --fp-ink: #1a1714;
  --fp-ink-soft: #3d3831;
  --fp-ink-faint: #6e665a;
  --fp-rule: #1a1714;
  --fp-hair: color-mix(in srgb, #1a1714 26%, transparent);
  --fp-dots: color-mix(in srgb, #1a1714 45%, transparent);
  --fp-spot: var(--wl-accent-on-light);
  /* the engine checks the accent against near-white; newsprint is darker, so small
     type in the spot colour takes it a step deeper */
  --fp-spot-ink: color-mix(in srgb, var(--wl-accent-on-light) 80%, #000);
  --fp-black: "Old English Text MT", "UnifrakturMaguntia", "UnifrakturCook", "Cloister Black", "Engravers Old English", "Goudy Text MT", "Blackletter", "Fraktur", "Didot", "Bodoni 72", "Bodoni MT", "Playfair Display", Georgia, serif;
  --fp-caps: 0.16em;

  --v-bg: var(--fp-paper);
  --v-fg: var(--fp-ink);
  --v-soft: var(--fp-ink-soft);
  --v-faint: var(--fp-ink-faint);
  --v-line: var(--fp-hair);
  --v-line-strong: var(--fp-rule);
  --v-surface: var(--fp-paper);
  --v-surface-2: var(--fp-paper-2);
  --v-card-bg: transparent;
  --v-accent: var(--fp-spot);
  --v-accent-text: var(--fp-spot);
  --v-on-accent: #ffffff;
  --v-secondary: var(--fp-ink);
  --v-seg-1: var(--fp-ink);
  --v-seg-2: var(--fp-spot);
  --v-seg-3: #8b8274;
  --v-seg-4: color-mix(in srgb, var(--fp-spot) 45%, var(--fp-paper));
  --v-seg-5: #b9b09f;
  --v-seg-6: #5a5348;
  --v-font-body: Georgia, "Iowan Old Style", Charter, "Noto Serif", Cambria, "Times New Roman", serif;
  --v-font-display: "Times New Roman", Times, "Liberation Serif", "Nimbus Roman", "Noto Serif", Georgia, serif;
  --v-font-mono: "Courier New", Courier, "Nimbus Mono PS", "Liberation Mono", monospace;
  --v-display-weight: 700;
  --v-display-tracking: -0.012em;
  --v-display-case: none;
  --v-display-lh: 1.02;
  --v-title-size: clamp(1.8rem, 3vw, 2.6rem);
  --v-body-size: 1.04rem;
  --v-radius: 0px;
  --v-radius-sm: 0px;
  --v-radius-lg: 0px;
  --v-border: 1px solid var(--fp-hair);
  --v-shadow: none;
  --v-card-pad: 20px;
  --v-maxw: 1200px;
  --v-sec-gap: clamp(40px, 5vw, 60px);
  --v-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --wl-label-lore: "The Story";
  --wl-label-features: "Features";
  --wl-label-supply: "The Numbers";
  --wl-label-flow: "How It Works";
  --wl-label-timeline: "Chronology";
  --wl-label-comparison: "Compared";
  --wl-label-stats: "Figures";
  --wl-label-tweet: "The Source";
  --wl-label-gallery: "In Pictures";
  --wl-label-facts: "At a Glance";
  --wl-label-quotes: "Voices";
  --wl-label-faq: "Questions & Answers";
  --wl-label-access: "Classifieds";

  /* layout knobs (skeleton.css) */
  --ne-maxw: 1200px;
  --ne-top-h: 38px;
  --ne-chrome-h: 250px;
  --ne-mast-cols: minmax(0, 1fr) minmax(0, 2.3fr) minmax(0, 1fr);
  --ne-hero-cols: minmax(0, 2.8fr) minmax(0, 6.3fr) minmax(0, 3.7fr);
  --ne-hero-areas: "head head head" "brief fig story" "brief pull story";
  --ne-hero-rows: auto auto 1fr;
  --ne-hero-colgap: 30px;
  --ne-hero-rowgap: 18px;
  --ne-hero-pad-t: 16px;
  --ne-hero-pad-b: 8px;
  --ne-photo-ratio: 2 / 1;
  --ne-flow-cols: repeat(12, minmax(0, 1fr));
  --ne-flow-gap: 44px;
}

body {
  background: url("../art/grain.svg") 0 0 / 240px 240px, radial-gradient(ellipse 110% 1400px at 50% 0, transparent 62%, rgb(90 70 30 / 0.07)), var(--fp-paper);
  color: var(--fp-ink);
  font-family: var(--v-font-body);
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}
::selection { background: color-mix(in srgb, var(--fp-spot) 30%, transparent); }

/* the paper's chrome voice: small letterspaced capitals */
.ne-top__nav .wl-nav__link, .ne-dateline, .ne-ear__label, .ne-hero__kicker, .wl-kicker,
.ne-pull__who, .wl-post__meta, .wl-quote__who, .wl-access__net, .wl-ca__label, .wl-foot__net {
  font-family: var(--v-font-body);
  text-transform: uppercase;
  letter-spacing: var(--fp-caps);
  font-variant-numeric: lining-nums;
}

/* ---------------------------------------------------------------- the ribbon */
.ne-edge, .ne-live { display: none; }
.ne-top { background: var(--fp-paper); border-bottom: 1px solid var(--fp-hair); gap: 14px; }
.ne-brand { display: none; gap: 8px; }
.ne-past-mast .ne-brand { display: inline-flex; animation: fp-fade 0.4s var(--v-ease) backwards; }
.ne-brand__mark { display: none; }
.ne-brand__name { font-family: var(--fp-black); font-size: 1.6rem; line-height: 1; font-synthesis: none; }
.ne-brand__tick { font-size: 0.66rem; letter-spacing: var(--fp-caps); color: var(--fp-ink-faint); }
/* every link carries a left rule; the nav is pulled left by one link's padding and
   clipped by a pixel, so the first visible rule never shows, whichever link is first */
.ne-top__nav {
  margin-left: -13px; padding-right: 30px;
  clip-path: inset(0 0 0 1px);
  -webkit-mask: linear-gradient(90deg, #000 calc(100% - 36px), transparent);
  mask: linear-gradient(90deg, #000 calc(100% - 36px), transparent);
}
.ne-top__nav .wl-nav__link { padding: 0 12px; font-size: 0.66rem; color: var(--fp-ink-soft); border-left: 1px solid var(--fp-hair); line-height: 1; }
.ne-top__nav .wl-nav__link--lore, .ne-top__nav .wl-nav__link--facts { display: none; }
.ne-top__nav .wl-nav__link:hover, .ne-top__nav .wl-nav__link.is-active { color: var(--fp-ink); text-decoration: underline; text-underline-offset: 3px; }
.ne-top__cta { gap: 16px; }
.ne-top__cta .wl-btn, .ne-hero__cta .wl-btn, .ne-ear__cta .wl-btn {
  border: 0; border-radius: 0; padding: 4px 0; background: none; color: var(--fp-ink);
  font-family: var(--v-font-body); font-size: 0.66rem; font-weight: 700; letter-spacing: var(--fp-caps); text-transform: uppercase;
  box-shadow: none; transform: none;
}
.ne-top__cta .wl-btn:hover { color: var(--fp-spot); }
.ne-top__cta .wl-btn .wl-glyph { width: 13px; height: 13px; }
.ne-top__cta .wl-btn--contract, .ne-top__cta .wl-btn__ca { display: none; }

/* ---------------------------------------------------------------- nameplate */
.ne-mast { padding: 10px 0 8px; gap: 26px; }
.ne-mast__name {
  font-family: var(--fp-black);
  font-weight: 400;
  font-synthesis: none;
  font-size: clamp(3.4rem, 8.8vw, 7.4rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--fp-ink);
  padding: 0 0.04em;
}
/* an all-caps name is set in roman capitals, not blackletter */
.ne-name-caps .ne-mast__name { font-family: var(--v-font-display); font-weight: 700; letter-spacing: 0.04em; font-size: clamp(3rem, 8vw, 6.6rem); line-height: 1.08; }
.ne-name-caps .ne-brand__name { font-family: var(--v-font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.06em; }
.ne-ear {
  align-self: center;
  border: 1px solid var(--fp-rule);
  box-shadow: inset 0 0 0 3px var(--fp-paper), inset 0 0 0 4px var(--fp-hair);
  padding: 12px 14px;
  min-height: 92px;
  background: color-mix(in srgb, var(--fp-paper-hi) 60%, transparent);
}
.ne-ear--l { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 12px; align-items: center; max-width: 250px; }
.ne-ear--l:not(:has(img)), .ne-ear--l:not(:has(p)) { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; }
.ne-ear__img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; filter: grayscale(1) contrast(1.2) brightness(1.04); mix-blend-mode: multiply; border: 1px solid var(--fp-rule); }
.ne-ear__motto { margin: 0; font-style: italic; font-size: 0.86rem; line-height: 1.3; color: var(--fp-ink-soft); text-wrap: balance; }
.ne-ear__motto::before { content: "\201C"; }
.ne-ear__motto::after { content: "\201D"; }
.ne-ear--r { justify-self: end; width: 100%; max-width: 250px; text-align: center; display: grid; gap: 5px; align-content: center; }
.ne-ear__label { margin: 0; font-size: 0.62rem; color: var(--fp-ink-faint); }
.ne-ear__cta { justify-content: center; }
.ne-ear__cta .wl-btn:not(.wl-btn--contract) { display: none; }
.ne-ear__cta .wl-btn--contract { display: grid; justify-items: center; gap: 4px; padding: 0; cursor: pointer; }
.ne-ear__cta .wl-btn--contract .wl-glyph { display: none; }
.ne-ear__cta .wl-btn__ca { order: -1; opacity: 1; font-family: var(--v-font-mono); font-size: 1.02rem; font-weight: 700; letter-spacing: 0; text-transform: none; color: var(--fp-ink); }
.ne-ear__cta .wl-btn__label { font-size: 0.6rem; color: var(--fp-spot-ink); text-decoration: underline; text-underline-offset: 3px; }
.ne-ear__cta .wl-btn:hover .wl-btn__label { color: var(--fp-ink); }
.ne-ear--r:not(:has(.wl-btn--contract)), .ne-ear--l:not(:has(img, p)) { visibility: hidden; }

/* ---------------------------------------------------------------- dateline */
.ne-dateline {
  position: relative;
  margin-top: 8px;
  padding: 6px 0 5px;
  border-top: 1px solid var(--fp-rule);
  border-bottom: 1px solid var(--fp-rule);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fp-ink);
}
.ne-dateline::before { content: ""; position: absolute; left: 0; right: 0; top: -6px; height: 3px; background: var(--fp-rule); }
.ne-dateline__cell { flex: 1 1 0; }
.ne-dateline__date { flex: 2 1 auto; text-align: center; }
.ne-dateline__net { text-align: right; }

/* the wire: only when the brief asks for a marquee hero */
.ne-wire { display: none; }
.wl-hero-marquee .ne-wire { display: flex; margin: 10px var(--ne-gutter) 0; border-bottom: 1px solid var(--fp-hair); min-height: 30px; }
.ne-wire__label { padding-right: 12px; margin-right: 12px; border-right: 1px solid var(--fp-hair); font-size: 0.64rem; font-weight: 700; letter-spacing: var(--fp-caps); text-transform: uppercase; color: var(--fp-spot-ink); }
.ne-wire .wl-marquee__item { font-style: italic; font-size: 0.92rem; padding: 0 1.2em; }
.ne-wire .wl-marquee__item::after { content: "\2756"; margin-left: 2.4em; font-style: normal; font-size: 0.7em; color: var(--fp-spot); }

/* ---------------------------------------------------------------- the lead */
.ne-hero__head { position: relative; padding-bottom: 14px; border-bottom: 1px solid var(--fp-rule); }
.ne-hero__flags { position: absolute; top: -2px; right: 0; }
.ne-updated { display: none; }
.ne-stamp {
  display: inline-block;
  padding: 5px 12px 4px;
  border: 3px double var(--fp-spot);
  color: var(--fp-spot);
  font-family: var(--v-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-7deg);
  -webkit-mask: url("../art/grain.svg") 0 0 / 120px 120px, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask: url("../art/grain.svg") 0 0 / 120px 120px exclude, linear-gradient(#000, #000);
}
.ne-hero__kicker {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 12px;
  padding-right: 150px;
  font-size: 0.76rem; font-weight: 700;
  color: var(--fp-spot-ink);
}
.ne-hero__kicker::after { content: ""; flex: 0 1 90px; height: 1px; background: currentColor; }
.ne-hero__headline {
  font-family: var(--v-font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.9vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--fp-ink);
}
.ne-hero[data-ne-len="s"] .ne-hero__headline { font-size: clamp(2.8rem, 8.6vw, 7rem); letter-spacing: -0.03em; }
.ne-hero[data-ne-len="l"] .ne-hero__headline { font-size: clamp(2.2rem, 5vw, 4.1rem); }
.ne-hero[data-ne-len="xl"] .ne-hero__headline { font-size: clamp(2rem, 4.1vw, 3.3rem); }
.ne-hero__deck {
  margin: 14px 0 0;
  max-width: 54rem;
  font-style: italic;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.38;
  color: var(--fp-ink-soft);
  text-wrap: pretty;
}
.ne-hero__cta { display: none; margin-top: 16px; }

/* a brief without a story, a glance box or a photo closes the gap (knobs only) */
.ne-hero:has(> .ne-hero__brief:empty) { --ne-hero-cols: minmax(0, 6.4fr) minmax(0, 3.6fr); --ne-hero-areas: "head head" "fig story" "pull story"; }
.ne-hero:has(> .ne-hero__story:empty) { --ne-hero-cols: minmax(0, 3fr) minmax(0, 7fr); --ne-hero-areas: "head head" "brief fig" "brief pull"; }
.ne-hero:has(> .ne-hero__brief:empty):has(> .ne-hero__story:empty) { --ne-hero-cols: minmax(0, 1fr); --ne-hero-areas: "head" "fig" "pull"; }
.ne-hero:has(.wl-media--none) { --ne-hero-cols: minmax(0, 3fr) minmax(0, 9fr); --ne-hero-areas: "head head" "brief story" "brief pull"; }
.ne-hero:has(.wl-media--none) .ne-hero__story .wl-lore { columns: 2; column-gap: 30px; column-rule: 1px solid var(--fp-hair); }
.ne-hero__head:not(:has(.ne-hero__kicker)) .ne-stamp { display: none; }
.ne-photo .wl-post--giant .wl-post__text { font-size: clamp(1.4rem, 2.4vw, 2.1rem); }

/* column rules between the rail, the photo and the story */
@media (min-width: 1081px) {
  .ne-hero__story, .ne-hero__brief { align-self: stretch; position: relative; }
  .ne-hero__story::before { content: ""; position: absolute; top: 0; bottom: 0; left: calc(var(--ne-hero-colgap) / -2); border-left: 1px solid var(--fp-hair); }
  .ne-hero__brief::after { content: ""; position: absolute; top: 0; bottom: 0; right: calc(var(--ne-hero-colgap) / -2); border-left: 1px solid var(--fp-hair); }
}

/* the lead photo */
.ne-photo { border: 1px solid var(--fp-rule); background: var(--fp-paper-2); }
.ne-photo .wl-hero-img { filter: saturate(0.92) contrast(1.03) sepia(0.06); }
.ne-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle, rgb(20 16 10 / 0.5) 0.8px, transparent 1.25px) 0 0 / 4px 4px;
  mix-blend-mode: multiply; opacity: 0.2;
}
.ne-photo.wl-media--pfp, .ne-photo.wl-media--pfp-animated { aspect-ratio: 4 / 3; }
.ne-photo.wl-media--pfp .wl-hero-img, .ne-photo.wl-media--pfp-animated .wl-hero-img { object-position: 50% 40%; }
.ne-photo.wl-media--post { border: 0; background: none; }
.ne-photo.wl-media--post::after { display: none; }
.ne-hero__cap {
  display: flex; gap: 8px; align-items: baseline;
  margin-top: 7px; padding-bottom: 7px;
  border-bottom: 1px solid var(--fp-hair);
  font-size: 0.84rem; font-style: italic; line-height: 1.4; color: var(--fp-ink-soft);
}
.ne-hero__cap::before { content: ""; flex: none; width: 7px; height: 7px; background: var(--fp-ink); transform: translateY(-1px); }

/* the pull quote */
.ne-pull { position: relative; padding: 14px 0 14px 50px; border-top: 3px solid var(--fp-rule); border-bottom: 1px solid var(--fp-rule); }
.ne-pull::before {
  content: "\201C"; position: absolute; left: -2px; top: 4px;
  font-family: var(--v-font-display); font-weight: 700; font-size: 5rem; line-height: 1; color: var(--fp-spot);
}
.ne-pull__text { margin: 0; font-family: var(--v-font-display); font-style: italic; font-size: clamp(1.4rem, 2.3vw, 1.95rem); line-height: 1.16; letter-spacing: -0.01em; color: var(--fp-ink); white-space: pre-line; overflow-wrap: anywhere; text-wrap: balance; }
.ne-pull[data-ne-len="long"] .ne-pull__text { font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.3; }
.ne-pull__who { display: flex; flex-wrap: wrap; gap: 2px 10px; margin-top: 10px; font-size: 0.64rem; font-weight: 700; color: var(--fp-ink-soft); }
.ne-pull__who::before { content: "\2014"; }
.ne-pull__handle, .ne-pull__time { font-weight: 400; color: var(--fp-ink-faint); }

/* the story, in a justified column */
.ne-hero .wl-sec__head { margin: 0 0 10px; padding-top: 0; border-top: 0; }
.ne-hero__story .wl-kicker { display: none; }
.ne-hero__story .wl-sec__title { font-size: clamp(1.35rem, 1.9vw, 1.62rem); line-height: 1.08; letter-spacing: -0.005em; }
.ne-hero__story .wl-lore { max-width: none; }
.ne-hero__story .wl-lore__lead, .ne-hero__story .wl-lore__p {
  margin: 0; max-width: none;
  font-size: 1rem; font-style: normal; font-weight: 400; line-height: 1.56; color: var(--fp-ink);
  text-align: justify; hyphens: auto; -webkit-hyphens: auto;
}
.ne-hero__story .wl-lore__p { text-indent: 1.3em; }
.ne-hero__story .wl-lore__lead::first-letter {
  float: left;
  font-family: var(--fp-black);
  font-synthesis: none;
  font-size: 4.3em;
  line-height: 0.82;
  padding: 6px 8px 0 0;
  color: var(--fp-spot);
}

/* at a glance */
.ne-hero__brief .wl-sec__inner { border-top: 4px solid var(--fp-rule); background: color-mix(in srgb, var(--fp-paper-2) 70%, transparent); padding: 12px 16px 6px; }
.ne-hero__brief .wl-kicker { margin: 0 0 6px; font-size: 0.62rem; }
.ne-hero__brief .wl-kicker .wl-ord { display: none; }
.ne-hero__brief .wl-kicker__label { padding: 0; background: none; color: var(--fp-spot-ink); }
.ne-hero__brief .wl-sec__title { font-size: 1.45rem; line-height: 1.05; }
.ne-hero__brief .wl-facts { gap: 0; }
.ne-hero__brief .wl-fact { grid-template-columns: 8px minmax(0, 1fr); gap: 11px; padding: 11px 0; font-size: 0.95rem; line-height: 1.45; }

/* ---------------------------------------------------------------- the pages that follow */
.ne-flow { overflow-x: clip; }
.ne-flow > .wl-sec::before {
  content: ""; position: absolute; top: var(--v-sec-gap); bottom: 0; left: calc(var(--ne-flow-gap) / -2);
  border-left: 1px solid var(--fp-hair);
}
.wl-sec--tweet { --ne-span: span 5; }
.wl-sec--timeline { --ne-span: span 7; }
.wl-sec--faq { --ne-span: span 7; }
.wl-sec--access { --ne-span: span 5; }
.wl-sec--facts, .wl-sec--lore { --ne-span: span 6; }

.wl-sec__head { max-width: none; margin-bottom: 18px; padding-top: 10px; border-top: 3px solid var(--fp-rule); }
.wl-kicker { gap: 10px; margin: 0 0 12px; font-size: 0.64rem; font-weight: 700; color: var(--fp-ink); }
.wl-kicker__label { padding: 4px 9px 3px; background: var(--fp-ink); color: var(--fp-paper); }
.wl-kicker::after { content: ""; order: 2; flex: 1; height: 1px; background: var(--fp-hair); }
.wl-kicker .wl-ord { order: 3; opacity: 1; color: var(--fp-ink-faint); font-weight: 400; }
.wl-sec__title { font-family: var(--v-font-display); color: var(--fp-ink); }
.wl-caption { font-style: italic; color: var(--fp-ink-faint); }

/* lore / facts outside the hero */
.wl-lore__lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); font-style: italic; color: var(--fp-ink); }
.wl-lore__p { color: var(--fp-ink); text-align: justify; hyphens: auto; }
.wl-facts { gap: 0; }
.wl-fact { border: 0; border-radius: 0; background: none; padding: 12px 0; grid-template-columns: 8px minmax(0, 1fr); gap: 12px; font-size: 1rem; }
.wl-fact + .wl-fact { border-top: 1px dotted var(--fp-dots); }
.wl-fact__mark { width: 8px; height: 8px; margin-top: 0.55em; border-radius: 0; background: var(--fp-ink); }
.wl-fact__mark .wl-glyph { display: none; }

/* the source: a clipping taped to the page */
.wl-sec--tweet .wl-sec__body { padding: 16px 6px 10px; }
.wl-post {
  max-width: none;
  padding: 26px 24px 18px;
  border: 1px solid color-mix(in srgb, var(--fp-ink) 18%, transparent);
  border-radius: 0;
  background: var(--fp-paper-hi);
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.04), 0 18px 26px -18px rgb(50 36 12 / 0.45);
  transform: rotate(var(--ne-tilt, -0.8deg));
  transition: transform 0.5s var(--v-ease), box-shadow 0.5s var(--v-ease);
}
.wl-post::before {
  content: ""; position: absolute; top: -13px; left: 50%; width: 112px; height: 28px; margin-left: -56px;
  background: color-mix(in srgb, #efe0a8 72%, transparent);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08);
  transform: rotate(-2.5deg);
}
.wl-post:hover { transform: rotate(0deg) translateY(-3px); box-shadow: 0 1px 0 rgb(0 0 0 / 0.04), 0 26px 34px -20px rgb(50 36 12 / 0.5); }
.wl-post__head { gap: 12px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--fp-hair); }
.wl-post__avatar { width: 46px; height: 46px; filter: grayscale(1) contrast(1.15); border: 1px solid var(--fp-rule); }
.wl-post__avatar--initial { background: var(--fp-ink); color: var(--fp-paper); font-family: var(--v-font-display); }
.wl-post__author { font-family: var(--v-font-display); font-size: 1.12rem; }
.wl-post__handle { font-size: 0.85rem; font-style: italic; }
.wl-post__brand { color: var(--fp-ink); }
.wl-post__text { font-style: italic; font-size: clamp(1.15rem, 1.6vw, 1.38rem); line-height: 1.42; color: var(--fp-ink); }
.wl-post__media { border-radius: 0; }
.wl-post__meta { font-size: 0.62rem; color: var(--fp-ink-faint); border-top: 1px solid var(--fp-hair); gap: 4px 14px; }
.wl-post__link { color: var(--fp-spot-ink); font-weight: 700; }
.wl-post__link .wl-glyph { width: 14px; height: 14px; }

/* the chronology: a ruled timetable */
.wl-sec--timeline .wl-milestones, .wl-infographic--timeline .wl-milestones { gap: 0; max-width: none; }
.wl-milestones::before { display: none; }
.wl-ms {
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-areas: "when title" "when text";
  column-gap: 0;
  row-gap: 0;
  border-top: 1px solid var(--fp-hair);
}
.wl-ms:last-child { border-bottom: 1px solid var(--fp-rule); }
.wl-ms__dot { display: none; }
.wl-ms__body { display: contents; }
.wl-ms__when {
  grid-area: when;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  margin: 0; padding: 12px 16px 12px 0;
  font-family: var(--v-font-display); letter-spacing: 0; text-transform: none; color: var(--fp-ink);
}
.ne-t__hm { font-size: 1.55rem; font-weight: 700; line-height: 1; font-variant-numeric: lining-nums tabular-nums; }
.ne-t__tz, .ne-t__day { font-family: var(--v-font-body); font-size: 0.58rem; letter-spacing: var(--fp-caps); text-transform: uppercase; color: var(--fp-ink-faint); }
.ne-ms--timed.ne-ms--sameday .ne-t__day { display: none; }
.ne-ms--timed.ne-ms--newday .ne-t__day { order: -1; margin-bottom: 4px; color: var(--fp-spot-ink); font-weight: 700; }
.wl-ms:not(.ne-ms--timed) .ne-t__day, .wl-ms__when:not(:has(span)) { font-family: var(--v-font-display); font-size: 0.95rem; font-weight: 700; line-height: 1.2; letter-spacing: 0; text-transform: none; color: var(--fp-ink); text-align: right; }
.wl-ms__title, .wl-ms__text { padding-left: 18px; border-left: 1px solid var(--fp-hair); }
.wl-ms__title { grid-area: title; margin: 0; padding-top: 12px; font-family: var(--v-font-display); font-size: 1.22rem; line-height: 1.15; }
.wl-ms__text { grid-area: text; margin: 0; padding-top: 3px; padding-bottom: 12px; font-size: 0.96rem; line-height: 1.5; color: var(--fp-ink-soft); }

/* voices: ruled columns of italic */
.wl-quotes { gap: 0; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); }
.wl-quote { padding: 4px 26px 6px; border: 0; border-left: 1px solid var(--fp-hair); border-radius: 0; background: none; }
.wl-quote:first-child { border-left: 0; padding-left: 0; }
.wl-quote::before { position: static; display: block; height: 0.62em; font-family: var(--v-font-display); font-weight: 700; font-size: 4.2rem; line-height: 1; color: var(--fp-spot); }
.wl-quote__text { margin: 0 0 14px; font-style: italic; font-weight: 400; font-size: clamp(1.15rem, 1.6vw, 1.38rem); line-height: 1.36; color: var(--fp-ink); }
.wl-quote__who { font-size: 0.62rem; font-weight: 700; color: var(--fp-ink-soft); }
.wl-quote__who::before { content: "\2014\00a0"; }

/* in pictures: a spread */
.wl-gallery { gap: 20px 24px; counter-reset: ne-shot; }
.wl-shot { overflow: visible; border-radius: 0; background: none; }
.wl-shot img { height: auto; aspect-ratio: 16 / 9; border: 1px solid var(--fp-rule); filter: saturate(0.9) sepia(0.06); transition: filter 0.6s var(--v-ease); }
.wl-shot:hover img { transform: none; filter: none; }
.wl-shot__caption {
  position: static; display: flex; gap: 8px; align-items: baseline;
  padding: 7px 0 0; border-radius: 0; background: none; backdrop-filter: none;
  color: var(--fp-ink-soft); font-size: 0.86rem; font-style: italic; line-height: 1.35;
}
.wl-shot__caption::before { content: counter(ne-shot); counter-increment: ne-shot; flex: none; font-style: normal; font-weight: 700; font-family: var(--v-font-display); color: var(--fp-spot); }
@media (min-width: 761px) {
  .wl-gallery[data-count="3"] { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
  .wl-gallery[data-count="3"] .wl-shot:first-child { grid-column: auto; grid-row: span 2; display: flex; flex-direction: column; }
  .wl-gallery[data-count="3"] .wl-shot:first-child img { flex: 1 1 auto; min-height: 0; aspect-ratio: auto; }
}

/* questions & answers, all printed */
.wl-faq { gap: 0; max-width: none; }
.wl-qa { border: 0; border-top: 1px solid var(--fp-hair); border-radius: 0; background: none; }
.wl-qa:last-child { border-bottom: 1px solid var(--fp-rule); }
.wl-qa__q { justify-content: flex-start; gap: 10px; padding: 13px 0 6px; font-family: var(--v-font-display); font-size: 1.2rem; line-height: 1.2; }
.wl-qa__q::before { content: "Q."; flex: none; color: var(--fp-spot); }
.wl-qa__sign { display: none; }
.wl-qa__a { padding: 0 0 14px 30px; font-size: 0.98rem; line-height: 1.55; color: var(--fp-ink-soft); }

/* classifieds: the contract as a cut-out */
.wl-access {
  position: relative;
  gap: 14px;
  padding: 22px 22px 20px;
  border: 2px dashed var(--fp-ink);
  background: var(--fp-paper-hi);
}
.wl-access::before {
  content: ""; position: absolute; z-index: 2; top: -12px; left: 24px; width: 40px; height: 24px;
  background: var(--fp-ink);
  -webkit-mask: url("../art/scissors.svg") center / contain no-repeat;
  mask: url("../art/scissors.svg") center / contain no-repeat;
}
.wl-access::after { content: ""; position: absolute; z-index: 1; top: -4px; left: 16px; width: 56px; height: 8px; background: var(--fp-paper); }
.wl-access__net { font-size: 0.64rem; font-weight: 700; color: var(--fp-ink-soft); }
.wl-ca { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 0; border: 0; border-radius: 0; background: none; }
.wl-ca__label { font-size: 0.6rem; color: var(--fp-ink-faint); }
.wl-ca__value { padding: 4px 0 8px; border-bottom: 1px solid var(--fp-rule); font-size: clamp(0.84rem, 1.3vw, 1rem); font-weight: 700; color: var(--fp-ink); word-break: break-all; text-wrap: balance; }
.wl-ca .wl-copy {
  justify-self: start;
  padding: 9px 16px 8px; border-radius: 0; background: var(--fp-ink); color: var(--fp-paper);
  font-family: var(--v-font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: var(--fp-caps); text-transform: uppercase;
}
.wl-ca .wl-copy:hover { background: var(--fp-spot); }
.wl-access .wl-links { gap: 0; flex-direction: column; }
.wl-link {
  justify-content: flex-start; gap: 10px; padding: 9px 0; border: 0; border-radius: 0; background: none;
  font-family: var(--v-font-display); font-size: 1.02rem; font-weight: 700;
}
.wl-access .wl-link { border-top: 1px dotted var(--fp-dots); }
.wl-link:hover { transform: none; color: var(--fp-spot); }
.wl-link .wl-glyph { width: 16px; height: 16px; }

/* features and figures, if a brief brings them: ruled columns and boxed numbers */
.wl-features { gap: 0; }
.wl-feature { padding: 4px 24px 8px; border: 0; border-left: 1px solid var(--fp-hair); border-radius: 0; background: none; }
.wl-feature:first-child { border-left: 0; padding-left: 0; }
.wl-feature:hover { transform: none; }
.wl-feature__icon { border-radius: 50%; background: none; border: 1px solid var(--fp-rule); color: var(--fp-ink); }
.wl-feature__icon img { filter: grayscale(1) contrast(1.1); mix-blend-mode: multiply; }
.wl-feature__title { font-family: var(--v-font-display); font-weight: 700; }
.wl-feature .wl-ord { top: 4px; right: 0; }
.wl-stats { border-radius: 0; border-color: var(--fp-rule); background: var(--fp-rule); }
.wl-stat { background: var(--fp-paper); }
.wl-stat__label { font-family: var(--v-font-body); color: var(--fp-ink-faint); }
.wl-donut__ticks line { stroke: color-mix(in srgb, var(--fp-ink) 30%, transparent); }
.wl-legend__swatch { border-radius: 0; }
.wl-node__card { border-radius: 0; background: none; border-color: var(--fp-rule); }
.wl-node__card .wl-ord { border-radius: 0; background: var(--fp-ink); color: var(--fp-paper); }
.wl-table-wrap { border-radius: 0; border-color: var(--fp-rule); }

/* ---------------------------------------------------------------- foot of the page */
.ne-foot { position: relative; margin: 0 var(--ne-gutter); padding: 18px 0 44px; border-top: 1px solid var(--fp-rule); }
.ne-foot::before { content: ""; position: absolute; left: 0; right: 0; top: -6px; height: 3px; background: var(--fp-rule); }
.wl-foot__name { font-family: var(--v-font-display); font-weight: 700; font-size: 1.3rem; }
.wl-foot__net { font-size: 0.64rem; font-weight: 700; color: var(--fp-ink-soft); }
.wl-foot__nfa { font-style: italic; color: var(--fp-ink-faint); }
.wl-foot .wl-links { flex-direction: row; flex-wrap: wrap; gap: 4px 18px; }
.wl-foot .wl-link { padding: 4px 0; border: 0; font-size: 0.9rem; }

/* ---------------------------------------------------------------- press run (calm)
   Entrance only, fill "backwards": nothing lingers on a layer once it has landed. */
@keyframes fp-fade { from { opacity: 0; } }
@keyframes fp-ink { from { opacity: 0; transform: scale(1.035); filter: blur(5px); } }
@keyframes fp-rule { from { transform: scaleX(0); } }
@keyframes fp-word { from { opacity: 0; transform: translateY(0.22em); } }
@keyframes fp-develop { from { filter: grayscale(1) contrast(1.5) brightness(1.2); } }
@keyframes fp-stamp { 0% { opacity: 0; transform: rotate(-16deg) scale(1.9); } 70% { opacity: 1; transform: rotate(-6deg) scale(0.94); } }
.ne-mast__name { animation: fp-ink 1s var(--v-ease) backwards; }
.ne-dateline::before { animation: fp-rule 0.9s 0.15s var(--v-ease) backwards; }
.ne-hero__headline .wl-w { animation: fp-word 0.7s var(--v-ease) backwards; animation-delay: calc(var(--i, 0) * 55ms + 200ms); }
.ne-photo .wl-hero-img { animation: fp-develop 1.2s 0.15s ease-out backwards; }
.ne-stamp { animation: fp-stamp 0.45s 0.85s var(--v-ease) backwards; }

/* ---------------------------------------------------------------- smaller sheets */
@media (max-width: 900px) {
  .ne-top__cta .wl-btn--contract { display: inline-flex; }
  .ne-hero__cta { display: flex; }
  .ne-hero__cta .wl-btn { padding: 9px 14px 8px; border: 1px solid var(--fp-rule); }
  .ne-hero__cta .wl-btn--primary { background: var(--fp-ink); color: var(--fp-paper); }
  .ne-hero__cta .wl-btn__ca { display: none; }
  .ne-mast { padding-top: 12px; }
}
@media (max-width: 760px) {
  .ne-top__cta .wl-btn:not(.wl-btn--contract) { display: none; }
  .ne-top__nav .wl-nav__link { font-size: 0.62rem; }
  .ne-past-mast .ne-top__nav { display: none; }
  .ne-past-mast .ne-top { justify-content: space-between; }
  .ne-mast__name { font-size: clamp(3rem, 18vw, 5.2rem); }
  .ne-name-caps .ne-mast__name { font-size: clamp(2.4rem, 13vw, 4rem); }
  .ne-dateline { font-size: 0.58rem; gap: 2px 14px; }
  .ne-dateline__cell, .ne-dateline__date { flex: 0 1 auto; text-align: center; }
  .ne-dateline__date { order: -1; flex-basis: 100%; }
  .ne-hero__kicker { padding-right: 100px; font-size: 0.68rem; }
  .ne-hero__kicker::after { display: none; }
  .ne-stamp { font-size: 0.86rem; padding: 4px 9px 3px; }
  .ne-hero__headline { font-size: clamp(2.1rem, 10.4vw, 3rem); }
  .ne-hero[data-ne-len="s"] .ne-hero__headline { font-size: clamp(2.5rem, 13vw, 3.8rem); }
  .ne-hero[data-ne-len="l"] .ne-hero__headline { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .ne-hero[data-ne-len="xl"] .ne-hero__headline { font-size: clamp(1.7rem, 7.8vw, 2.3rem); }
  .ne-pull { padding-left: 40px; }
  .ne-pull::before { font-size: 4rem; }
  .wl-quote { padding: 18px 0 8px; border-left: 0; border-top: 1px solid var(--fp-hair); }
  .wl-quote:first-child { border-top: 0; padding-top: 0; }
  .wl-feature { padding: 16px 0; border-left: 0; border-top: 1px solid var(--fp-hair); }
  .wl-ms { grid-template-columns: 76px minmax(0, 1fr); }
  .ne-t__hm { font-size: 1.25rem; }
  .wl-ms__title, .wl-ms__text { padding-left: 12px; }
  .wl-post { transform: none; }
  .wl-access { padding: 22px 16px 18px; }
}
