/* ===================================================================== *
 * The Angie blog (architecture.md §52) — shared stylesheet for /blog.
 *
 * Same CREAM EDITORIAL REGISTER as /august and /shirts (Design.md §10): cream
 * paper, Playfair display with real italics, Space Mono eyebrows in blush, body
 * copy in Pretendard, plates generously cropped behind a hairline, no emoji in
 * the chrome. A blog is the most editorial surface on the site, so it belongs in
 * that register rather than in the app's pastel one.
 *
 * WHY ONE SHARED FILE and not per-page <style> blocks like /shirts and /august:
 * those are single pages, this is a section that grows. Three posts already share
 * a hero, a numbered section header, a plate, a tip box and a footer, and a fourth
 * post should cost a file, not a copy of the design.
 *
 * SELF-CONTAINED ON PURPOSE. It never imports client/ui/app.css. The app's
 * stylesheet carries the whole pastel design system plus the [data-preview] game
 * clips, and pulling that onto a cream page to reuse three animations would drag
 * in a token set that fights this one. The little game previews in §"previews"
 * below are therefore written here, in this register, rather than reused.
 *
 * The one deliberate borrowing from the app is PINK vs BLUE for the two partners
 * (Design.md §1: the two cursors are the core presence). On a page about a
 * two-person product, "one of you is pink and one is blue" is doing real work.
 * ===================================================================== */

:root {
  --paper:      #FFFBF6;
  --sunk:       #F6F1EA;
  --sunk-2:     #F1EAE0;
  --line:       #E7E1D8;
  --ink:        #23242A;
  --ink-soft:   #6B6660;
  --ink-faint:  #97918A;
  --blush:      #C9829C;
  --blush-tint: #FBF0F4;
  --pink:       #FF7BA3;
  --pink-tint:  #FFF1F5;
  --blue:       #5FA0FF;
  --blue-tint:  #EFF5FF;
  --near:       #1B1C21;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Pretendard", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  --r: 4px;                    /* low radius — the register is paper, not bubbles */
  --shadow: 0 10px 30px rgba(35, 36, 42, .08);
  --wrap: 720px;               /* prose measure: ~72ch at 18px */
  --wide: 1080px;              /* plates and widgets may exceed the measure */
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

/* Every plate carries width/height attributes, so this MUST keep height:auto or a
   16:9 painting renders as a stretched portrait (Design.md §10 rule 4). */
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

/* --- chrome ---------------------------------------------------------------- */
.bl-top {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 18px;
  padding: 14px clamp(16px, 5vw, 40px);
  background: rgba(255, 251, 246, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bl-brand {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: -.02em; text-decoration: none;
}
.bl-brand span { color: var(--blush); }
.bl-top nav { margin-left: auto; display: flex; gap: 20px; align-items: center; }
.bl-top nav a {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
  transition: color 140ms ease;
}
.bl-top nav a:hover { color: var(--blush); }
.bl-top nav a.is-cta {
  color: var(--paper); background: var(--near); padding: 8px 14px; border-radius: var(--r);
}
.bl-top nav a.is-cta:hover { background: var(--blush); color: #fff; }

/* --- layout --------------------------------------------------------------- */
.bl-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(16px, 5vw, 24px); }
.bl-bleed { max-width: var(--wide); margin: 0 auto; padding: 0 clamp(16px, 5vw, 24px); }

.bl-eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blush); font-weight: 700;
  margin: 0 0 14px;
}

/* --- hero ----------------------------------------------------------------- */
.bl-hero { padding: clamp(38px, 7vw, 78px) 0 clamp(24px, 4vw, 38px); }
.bl-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 5.4vw, 58px); line-height: 1.06; letter-spacing: -.025em;
  margin: 0 0 20px;
}
.bl-hero h1 em { font-style: italic; color: var(--blush); }
.bl-dek {
  font-size: clamp(18px, 1.6vw, 21px); line-height: 1.6; color: var(--ink-soft);
  margin: 0 0 26px; max-width: 60ch;
}
.bl-meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint);
  padding-top: 18px; border-top: 1px solid var(--line);
}
.bl-meta b { color: var(--ink-soft); font-weight: 700; }

/* The hero plate runs wider than the prose measure. */
.bl-hero-plate { margin: clamp(24px, 4vw, 40px) auto 0; }

/* --- prose ---------------------------------------------------------------- */
.bl-body > * + * { margin-top: 1.15em; }
.bl-body p { margin: 0; }
.bl-lede { font-size: clamp(19px, 1.7vw, 22px); line-height: 1.58; color: var(--ink); }
.bl-lede strong { font-weight: 600; }

/* Emphasis, with the colour the register allows. `em` is the serif italic — it is
   the page's main accent and reads as a voice, not as a highlighter. */
.bl-body em { font-family: var(--font-display); font-style: italic; color: var(--blush); font-size: 1.06em; }
.bl-body strong { font-weight: 700; color: var(--ink); }
/* Two named highlights for the two partners, plus a neutral one for product nouns. */
.hl-pink { background: linear-gradient(transparent 62%, var(--pink-tint) 62%); font-weight: 600; }
.hl-blue { background: linear-gradient(transparent 62%, var(--blue-tint) 62%); font-weight: 600; }
.hl      { background: linear-gradient(transparent 62%, #F6ECC8 62%); font-weight: 600; }

/* An in-prose link to the product. Underlined on purpose — this page's job is to
   send people into the app, and a coloured word that isn't obviously a link doesn't. */
.bl-body a:not(.bl-btn):not(.bl-inline-cta) {
  color: var(--ink); text-decoration: underline;
  text-decoration-color: var(--blush); text-decoration-thickness: 2px;
  text-underline-offset: 3px; font-weight: 600;
  transition: color 140ms ease, text-decoration-color 140ms ease;
}
.bl-body a:not(.bl-btn):not(.bl-inline-cta):hover { color: var(--blush); }

/* --- numbered section header (the "7 dates" / "3 games" spine) ------------ */
.bl-num {
  display: grid; grid-template-columns: 62px 1fr; gap: 0 18px;
  align-items: start;
  margin: clamp(40px, 6vw, 66px) 0 0;
  padding-top: 22px; border-top: 2px solid var(--ink);
}
.bl-num-n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; color: var(--blush); padding-top: 10px;
}
.bl-num h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.14; letter-spacing: -.02em;
  margin: 0;
}
.bl-num h2 em { font-style: italic; color: var(--blush); }
.bl-num-kind {
  grid-column: 2; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint);
  margin-top: 8px;
}
/* The numbered header's body copy lines up under the title, not under the numeral. */
.bl-num-body { grid-column: 2; margin-top: 14px; }
.bl-num-body > * + * { margin-top: 1.1em; }

@media (max-width: 560px) {
  .bl-num { grid-template-columns: 1fr; gap: 6px; }
  .bl-num-n, .bl-num h2, .bl-num-kind, .bl-num-body { grid-column: 1; }
  .bl-num-n { padding-top: 0; }
}

/* --- plates --------------------------------------------------------------- */
.bl-plate { margin: clamp(22px, 3.5vw, 34px) 0; }
.bl-plate img {
  width: 100%; border-radius: var(--r);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.bl-plate figcaption {
  margin-top: 10px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .08em; color: var(--ink-faint); line-height: 1.5;
}
.bl-plate.is-tall img { max-height: 560px; width: auto; }

/* A row of real strips / scenes. Scrolls inside itself on a phone rather than
   forcing the page to scroll sideways. */
.bl-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 1fr);
  gap: 12px; margin: clamp(20px, 3vw, 30px) 0;
  overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: thin;
}
.bl-row img { border-radius: var(--r); border: 1px solid var(--line); }
.bl-row figcaption {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  color: var(--ink-faint); margin-top: 8px; text-align: center;
}
.bl-row > figure { margin: 0; }

/* --- tip / callout -------------------------------------------------------- */
.bl-tip {
  margin: clamp(22px, 3vw, 30px) 0;
  padding: 20px 22px;
  background: var(--blush-tint);
  border-left: 3px solid var(--blush);
  border-radius: 0 var(--r) var(--r) 0;
}
.bl-tip-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blush); font-weight: 700;
  display: block; margin-bottom: 8px;
}
.bl-tip p { margin: 0; font-size: 16.5px; line-height: 1.62; }
.bl-tip p + p { margin-top: .8em; }

/* The closing "gentle reminder" — same object, near-black, because it is the one
   serious beat in a playful post and it should feel like a different room. */
.bl-note {
  margin: clamp(44px, 6vw, 70px) 0 0;
  padding: clamp(26px, 4vw, 38px);
  background: var(--near); color: #F4F0EA;
  border-radius: var(--r);
}
.bl-note .bl-eyebrow { color: #E2A9BE; }
.bl-note h2 {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; margin: 0 0 14px;
}
.bl-note p { margin: 0; color: #D8D2CA; }
.bl-note p + p { margin-top: .9em; }
.bl-note strong { color: #fff; }
.bl-note em { font-family: var(--font-display); font-style: italic; color: #E2A9BE; }
.bl-note a { color: #fff; text-decoration-color: #E2A9BE; }

/* --- buttons -------------------------------------------------------------- */
.bl-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: var(--r);
  background: var(--near); color: var(--paper);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; font-weight: 700;
  transition: background 140ms ease, transform 140ms ease;
}
.bl-btn:hover { background: var(--blush); transform: translateY(-1px); }
.bl-btn .bl-arrow { font-size: 10px; opacity: .8; }
.bl-btn.is-light { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.bl-btn.is-light:hover { border-color: var(--blush); color: var(--blush); background: transparent; }

/* A full-width in-flow CTA that names the activity it opens. */
.bl-inline-cta {
  display: flex; align-items: center; gap: 14px;
  margin: clamp(20px, 3vw, 28px) 0;
  padding: 16px 18px; text-decoration: none;
  background: var(--sunk); border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}
.bl-inline-cta:hover { border-color: var(--blush); background: var(--blush-tint); transform: translateY(-1px); }
.bl-inline-cta-body { min-width: 0; }
.bl-inline-cta-k {
  display: block; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blush); font-weight: 700;
}
.bl-inline-cta-t {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 19px;
  line-height: 1.25; margin-top: 3px; color: var(--ink);
}
.bl-inline-cta-s { display: block; font-size: 14.5px; color: var(--ink-soft); margin-top: 3px; }
.bl-inline-cta-go { margin-left: auto; flex: none; color: var(--blush); font-size: 13px; }

/* --- ranked game blocks (post 2) ----------------------------------------- */
.bl-rank {
  margin: clamp(40px, 6vw, 64px) 0 0;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper); overflow: hidden; box-shadow: var(--shadow);
}
.bl-rank-head {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  background: var(--sunk);
}
.bl-rank-badge {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: .1em; color: #fff; background: var(--blush);
  padding: 5px 10px; border-radius: 999px; flex: none;
}
.bl-rank-head h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.15; letter-spacing: -.02em; margin: 0;
}
.bl-rank-stat {
  margin-left: auto; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
  text-align: right; flex: none;
}
.bl-rank-inner { padding: 22px; }
.bl-rank-inner > * + * { margin-top: 1.1em; }
.bl-rank-inner h3 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blush); margin: 0; font-weight: 700;
}
.bl-rank-inner h3 + p { margin-top: .5em; }
@media (max-width: 620px) {
  .bl-rank-head { flex-wrap: wrap; }
  .bl-rank-stat { margin-left: 0; text-align: left; width: 100%; }
}

/* --- game previews (post 2) ---------------------------------------------- *
 * Small, honest mock-ups of each game's SHAPE, in this page's register. Written
 * here rather than reused from client/core/gamePreview.js because that component's
 * animation lives in the app's stylesheet — see the file header.
 * Under prefers-reduced-motion every one of these parks on its final frame. */
.bl-prev {
  position: relative; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--pink-tint), var(--blue-tint));
  padding: 20px; min-height: 210px;
  display: flex; align-items: center; justify-content: center;
}

/* quiz: two cards, both lock in, both flip at once */
.bl-prev-pair { display: flex; gap: 16px; width: 100%; max-width: 380px; }
.bl-pcard {
  flex: 1; background: #fff; border-radius: var(--r); padding: 12px;
  border: 1px solid rgba(35,36,42,.08); box-shadow: 0 4px 14px rgba(35,36,42,.06);
}
.bl-pcard.is-p { border-top: 3px solid var(--pink); }
.bl-pcard.is-b { border-top: 3px solid var(--blue); }
.bl-pline { height: 7px; border-radius: 3px; background: #EAE6E0; margin-bottom: 7px; }
.bl-pline.is-fill-p { background: #FFD3E1; }
.bl-pline.is-fill-b { background: #CFE2FF; }
.bl-plock {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em;
  text-transform: uppercase; margin-top: 10px; color: var(--ink-faint);
}
.bl-pcard.is-p .bl-plock { color: var(--pink); }
.bl-pcard.is-b .bl-plock { color: var(--blue); }
.bl-prev-burst {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--blush);
  animation: bl-burst 4s ease-in-out infinite;
}
@keyframes bl-burst {
  0%, 55% { opacity: 0; transform: translate(-50%, -40%) scale(.9); }
  70%, 92% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}

/* draw: one prompt, two canvases, ink appearing on both */
.bl-prev-split { width: 100%; max-width: 340px; }
.bl-prev-prompt {
  text-align: center; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  background: #fff; border-radius: 999px; padding: 6px 12px;
  display: inline-block; margin: 0 auto 12px; border: 1px solid var(--line);
}
.bl-half {
  height: 62px; background: #fff; border-radius: var(--r);
  border: 1px solid rgba(35,36,42,.08); position: relative; overflow: hidden;
}
.bl-half + .bl-half { margin-top: 10px; }
.bl-ink {
  position: absolute; height: 3px; border-radius: 2px; top: 50%;
  animation: bl-draw 3.2s ease-in-out infinite;
}
.bl-half.is-p .bl-ink { background: var(--pink); }
.bl-half.is-b .bl-ink { background: var(--blue); }
.bl-ink.i1 { left: 14%; width: 30%; transform: rotate(-12deg); }
.bl-ink.i2 { left: 46%; width: 24%; transform: rotate(14deg); animation-delay: .5s; }
.bl-half.is-b .bl-ink.i1 { animation-delay: .25s; }
.bl-half.is-b .bl-ink.i2 { animation-delay: .8s; }
@keyframes bl-draw {
  0%, 8% { clip-path: inset(0 100% 0 0); }
  40%, 86% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}

/* arcade: two faces racing across a CRT strip */
.bl-prev-cab {
  width: 100%; max-width: 340px; height: 120px; position: relative;
  background: #1B1C21; border-radius: var(--r); overflow: hidden;
}
.bl-prev-cab::after {   /* scanlines */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(rgba(255,255,255,.05) 0 1px, transparent 1px 3px);
}
.bl-runner {
  position: absolute; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid #fff; animation: bl-run 3.4s ease-in-out infinite;
}
.bl-runner.is-p { background: var(--pink); top: 26px; }
.bl-runner.is-b { background: var(--blue); top: 66px; animation-delay: .45s; }
@keyframes bl-run { 0% { left: 8%; } 50% { left: 74%; } 100% { left: 8%; } }
.bl-coin {
  position: absolute; color: #F6E27A; font-size: 13px; top: 46px;
  animation: bl-coin 3.4s linear infinite;
}
.bl-coin.c2 { animation-delay: 1.1s; }
.bl-coin.c3 { animation-delay: 2.2s; }
@keyframes bl-coin { 0% { right: 4%; opacity: 1; } 80%, 100% { right: 78%; opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bl-prev-burst { animation: none; opacity: 1; transform: translate(-50%, -50%); }
  .bl-ink { animation: none; clip-path: inset(0 0 0 0); }
  .bl-runner { animation: none; }
  .bl-runner.is-p { left: 60%; }
  .bl-runner.is-b { left: 30%; }
  .bl-coin { animation: none; opacity: 1; right: 30%; }
}

/* --- tutorial: step rail + widgets (post 3) ------------------------------ */
.bl-step {
  display: grid; grid-template-columns: 46px 1fr; gap: 0 18px;
  margin: clamp(34px, 5vw, 52px) 0 0;
}
.bl-step-n {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  color: #fff; background: var(--near);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; letter-spacing: 0;
}
.bl-step h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.16; letter-spacing: -.02em; margin: 0; padding-top: 2px;
}
.bl-step h2 em { font-style: italic; color: var(--blush); }
.bl-step-body { grid-column: 2; margin-top: 12px; }
.bl-step-body > * + * { margin-top: 1.05em; }
@media (max-width: 560px) {
  .bl-step { grid-template-columns: 1fr; gap: 10px; }
  .bl-step h2, .bl-step-body { grid-column: 1; }
}

/* A widget is an interactive demo, not a picture: it says "this is the control you
   will actually tap" better than a screenshot of one. */
.bl-widget {
  margin: clamp(20px, 3vw, 28px) 0;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--sunk); overflow: hidden;
}
.bl-widget-head {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid var(--line); background: var(--paper);
}
.bl-widget-head b {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blush); font-weight: 700;
}
.bl-widget-head span { font-size: 13px; color: var(--ink-faint); margin-left: auto; }
.bl-widget-body { padding: 16px; }

/* the swatch picker (theme packs / backgrounds) */
.bl-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.bl-swatch {
  border: 2px solid transparent; border-radius: var(--r); padding: 0;
  background: none; cursor: pointer; line-height: 0; overflow: hidden;
  transition: border-color 120ms ease, transform 120ms ease;
}
.bl-swatch img { width: 54px; height: 54px; object-fit: cover; border-radius: 2px; }
.bl-swatch:hover { transform: translateY(-2px); }
.bl-swatch[aria-pressed="true"] { border-color: var(--blush); }
.bl-swatch-name {
  display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-faint); text-align: center;
  padding: 4px 2px 3px; line-height: 1.2;
}
.bl-stage {
  margin-top: 14px; display: flex; gap: 16px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px; min-height: 140px;
}
.bl-stage img {
  width: 96px; flex: none; border-radius: 2px; border: 1px solid var(--line);
}
.bl-stage-copy { min-width: 0; }
.bl-stage-copy b {
  font-family: var(--font-display); font-size: 18px; font-weight: 600; display: block;
}
.bl-stage-copy span { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 460px) { .bl-stage { flex-direction: column; align-items: flex-start; } .bl-stage img { width: 100%; max-width: 160px; } }

/* the countdown widget — the one beat of the booth a still cannot show */
.bl-count {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.bl-count-screen {
  position: relative; width: 190px; height: 128px; flex: none;
  border-radius: var(--r); overflow: hidden; background: #23242A;
  display: grid; place-items: center;
}
.bl-count-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.bl-count-n {
  position: relative; font-family: var(--font-display); font-weight: 700;
  font-size: 56px; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.bl-count-flash {
  position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none;
}
.bl-count-flash.is-on { animation: bl-flash 420ms ease-out; }
@keyframes bl-flash { 0% { opacity: .95; } 100% { opacity: 0; } }
.bl-count-copy { min-width: 0; flex: 1 1 200px; }
.bl-count-copy p { margin: 0 0 12px; font-size: 15px; color: var(--ink-soft); }

/* --- index cards ---------------------------------------------------------- */
.bl-cards {
  display: grid; gap: clamp(18px, 3vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: clamp(28px, 5vw, 44px) 0;
}
.bl-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.bl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blush); }
.bl-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sunk); }
.bl-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bl-card-in { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bl-card-k {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blush); font-weight: 700;
}
.bl-card h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  line-height: 1.2; letter-spacing: -.02em; margin: 0; color: var(--ink);
}
.bl-card p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.bl-card-go {
  margin-top: auto; padding-top: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blush); font-weight: 700;
}

/* --- read-next + footer --------------------------------------------------- */
.bl-next { margin: clamp(48px, 7vw, 80px) 0 0; padding-top: 26px; border-top: 2px solid var(--ink); }
.bl-next .bl-eyebrow { margin-bottom: 18px; }

.bl-foot {
  margin-top: clamp(52px, 8vw, 88px);
  padding: clamp(30px, 5vw, 46px) 0;
  border-top: 1px solid var(--line); background: var(--sunk);
}
.bl-foot-in {
  max-width: var(--wide); margin: 0 auto; padding: 0 clamp(16px, 5vw, 24px);
  display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: baseline;
}
.bl-foot-in p { margin: 0; font-size: 14.5px; color: var(--ink-soft); max-width: 46ch; }
.bl-foot-links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.bl-foot-links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
}
.bl-foot-links a:hover { color: var(--blush); }

/* Skip link — the page is long and the nav is sticky. */
.bl-skip {
  position: absolute; left: -9999px;
  background: var(--near); color: #fff; padding: 10px 16px; border-radius: var(--r);
  font-family: var(--font-mono); font-size: 12px; z-index: 50;
}
.bl-skip:focus { left: 12px; top: 12px; }
