/* Scrappy blog, on the redesigned system.
   Tokens, type and geometry lifted from `Scrappy Website.dc.html` so the blog
   and the site are the same object. The canvas file is inline-styled because
   that is what the canvas emits; this is the same design expressed as classes,
   which is what 50 hand-written articles need in order to restyle at once.

   The three colour laws still hold and hold harder here:
       marigold is the field    rust is always "go forward"    cream is rest */

:root {
  --cream:      #F3F1ED;   /* was F1F0EE. The redesign warms it slightly. */
  --paper:      #FFFFFF;
  --band:       #E7E3DA;
  --ink:        #17161A;
  --ink-body:   #26242A;   /* long-form serif runs warmer than UI ink */
  --ink-70:     rgba(23,22,26,.72);
  --ink-58:     rgba(23,22,26,.58);
  --ink-42:     rgba(23,22,26,.42);
  --ink-38:     rgba(23,22,26,.38);
  --marigold:   #FBBD22;
  --marigold-lo:#FFF3C6;
  --rust:       #C4380E;
  --taupe:      #DCD7CE;
  --taupe-line: #CFC9BE;
  --rule:       rgba(23,22,26,.10);
  --ghost:      rgba(23,22,26,.05);

  --sans:  Figtree, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif: Newsreader, Georgia, "Iowan Old Style", serif;
  --mono:  ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --shell: 1180px;   /* the site's frame */
  --read:  780px;    /* the reading column, 700px of text inside it */
  --pad:   40px;

  /* Six cluster hues. Still only ever a dot, a rule or a chip. */
  --c-screentime: #E8720F;
  --c-night:      #2A241C;
  --c-desk:       #4A6FA5;
  --c-mac:        #3E8F5B;
  --c-phone:      #D79A0C;
  --c-versus:     #8E8880;
  --cluster:      var(--ink-42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--sans); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--ink); }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
@media (max-width: 640px) { :root { --pad: 22px; } }

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

.masthead {
  position: sticky; top: 0; z-index: 80;
  background: var(--cream); border-bottom: 1px solid rgba(23,22,26,.08);
}
.masthead .wrap {
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad);
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.masthead .mark { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.masthead .mark img { width: 34px; height: 34px; border-radius: 22.4%; display: block; }
.masthead .mark span { font: 900 20px/1 var(--sans); letter-spacing: -.02em; }
.masthead nav { display: flex; align-items: center; gap: 30px; }
.masthead nav a { font: 600 14px/1 var(--sans); color: rgba(23,22,26,.6); }
.masthead nav a:hover, .masthead nav a[aria-current="page"] { color: var(--ink); }
.masthead .get {
  display: flex; align-items: center; height: 40px; padding: 0 20px;
  background: var(--ink); border-radius: 20px;
  font: 800 14px/1 var(--sans); color: #fff; white-space: nowrap;
}
.masthead .get:hover { background: #000; color: #fff; }
@media (max-width: 900px) { .masthead nav a.hide-sm { display: none; } }
@media (max-width: 560px) { .masthead .mark span { display: none; } }

.progress {
  position: fixed; inset: 0 auto auto 0; height: 3px; width: 100%;
  background: var(--marigold); transform-origin: 0 50%; transform: scaleX(0); z-index: 90;
}
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .progress { animation: fill linear both; animation-timeline: scroll(root block); }
    @keyframes fill { to { transform: scaleX(1); } }
  }
}

/* Article --------------------------------------------------------------
   One centred column at the designed 780px. The old three-column gutter grid
   is gone with the redesign, and so is the margin-note bug that came with it:
   he now interrupts in the column, at full width, where he is easier to read
   and impossible to mis-place. */

.article { max-width: var(--read); margin: 0 auto; padding: 0 var(--pad); }
.article > .wide, .article > .full { max-width: none; }

.post-head { max-width: var(--read); margin: 0 auto; padding: 36px var(--pad) 0; }
.post-meta { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.cluster-tag {
  padding: 6px 12px; background: var(--marigold); border-radius: 13px;
  font: 800 11px/1.3 var(--sans); letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink);
}
.cluster-tag:hover { color: var(--ink); filter: brightness(.96); }
.byline { font: 600 13.5px/1.4 var(--sans); color: var(--ink-42); margin: 0; }
.post-head h1 {
  margin: 24px 0 0; font: 900 clamp(34px, 5.4vw, 54px)/1.04 var(--sans);
  letter-spacing: -.038em; text-wrap: pretty;
}
.post-head .lede {
  margin: 22px 0 0; font: 500 clamp(18px, 2.4vw, 21px)/1.5 var(--sans);
  color: var(--ink-58); text-wrap: pretty;
}

/* The hero. A generated illustration when one exists; the drawn scene when it
   does not, so a post is never blocked on an image. */
.post-hero { max-width: var(--shell); margin: 40px auto 0; padding: 0 var(--pad); }
.post-hero .frame {
  position: relative; height: clamp(200px, 30vw, 340px);
  border-radius: 30px; overflow: hidden; background: var(--marigold);
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-hero .scene-field { position: absolute; left: 0; right: 0; bottom: 0; height: 96px; background: var(--cream); }
.post-hero .scene-line  { position: absolute; left: 0; right: 0; bottom: 93px; height: 3px; background: #E4E0D7; }
.post-hero .scene-mat   { position: absolute; left: 50%; margin-left: -125px; bottom: 80px; width: 250px; height: 26px; background: var(--taupe); border-radius: 8px; }
.post-hero figcaption { font: 600 13px/1.5 var(--sans); color: var(--ink-38); margin: 12px 0 0; }

/* Body ------------------------------------------------------------------ */

.article p {
  margin: 26px 0 0; font: 400 19.5px/1.68 var(--serif);
  color: var(--ink-body); text-wrap: pretty;
}
.article h2 {
  margin: 52px 0 0; font: 900 clamp(24px, 3.4vw, 30px)/1.16 var(--sans);
  letter-spacing: -.028em; color: var(--ink); text-wrap: balance;
}
.article h3 {
  margin: 40px 0 0; font: 900 22px/1.2 var(--sans);
  letter-spacing: -.024em; color: var(--ink);
}
.article ul, .article ol {
  margin: 22px 0 0; padding-left: 22px;
  font: 400 19px/1.62 var(--serif); color: var(--ink-body);
}
.article li { margin-bottom: 10px; }
.article li::marker { color: var(--cluster); }
.article li > strong { font-family: var(--sans); font-weight: 700; font-size: .92em; color: var(--ink); }
.article strong { font-weight: 600; color: var(--ink); }
.article em { font-style: italic; }
.article a { font-weight: 500; text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: 1px; }

/* Steps. Numbered only where the number is true. */
.steps { list-style: none; padding: 0; counter-reset: step; margin: 28px 0 0; display: grid; gap: 14px; }
.steps > li {
  counter-increment: step; position: relative; padding-left: 46px; margin: 0;
  font: 400 18.5px/1.6 var(--serif); color: var(--ink-body);
}
.steps > li::before {
  content: counter(step); position: absolute; left: 0; top: 1px;
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--ink); color: var(--cream); border-radius: 50%;
  font: 800 13px/1 var(--sans);
}
.steps strong { display: block; font-family: var(--sans); font-weight: 800; font-size: 16.5px; color: var(--ink); margin-bottom: 3px; }

/* He interrupts. Inline now, and better for it. */
.aside {
  margin: 36px 0 0; padding: 22px 26px;
  background: var(--paper); border-radius: 22px;
  display: flex; gap: 16px; align-items: flex-start;
}
.aside svg, .aside img { width: 46px; height: auto; flex: none; }
.aside p {
  margin: 0; font: 600 16.5px/1.5 var(--sans); color: var(--ink-70);
}

/* Marigold is the field: this is the thing to remember. */
.field, .pull {
  margin: 36px 0 0; padding: 28px 32px; background: var(--marigold);
  border-radius: 22px; color: var(--ink);
  font: 700 clamp(19px, 2.6vw, 23px)/1.34 var(--sans); letter-spacing: -.018em;
  text-wrap: pretty;
}
.field h3 { margin: 0 0 10px; font: 800 12px/1 var(--sans); letter-spacing: .11em; text-transform: uppercase; color: rgba(23,22,26,.62); }
.field p { margin: 0 0 12px; font: 700 clamp(18px,2.4vw,21px)/1.36 var(--sans); color: var(--ink); }
.field p:last-child { margin-bottom: 0; }
.field a, .pull a { color: var(--ink); text-decoration: underline; }

.note {
  margin: 36px 0 0; padding: 26px 30px; background: var(--paper);
  border-radius: 22px; border-left: 5px solid var(--rust);
}
.note .label { display: block; font: 800 11px/1 var(--sans); letter-spacing: .11em; text-transform: uppercase; color: var(--rust); margin-bottom: 10px; }
.note p { margin: 0 0 10px; font: 600 16.5px/1.5 var(--sans); color: var(--ink-70); }
.note p:last-child { margin-bottom: 0; }

/* Code, keys, paths ------------------------------------------------------ */
.article code {
  font: 500 .84em/1.4 var(--mono); background: var(--ghost);
  border: 1px solid var(--rule); border-radius: 6px; padding: 2px 6px; word-break: break-word;
}
.article pre {
  margin: 28px 0 0; padding: 22px 24px; background: var(--ink); color: #E9E5DC;
  border-radius: 18px; overflow-x: auto; font: 400 14px/1.65 var(--mono);
}
.article pre code { background: none; border: 0; padding: 0; color: inherit; }
kbd {
  font: 500 .84em/1 var(--mono); background: var(--paper);
  border: 1px solid var(--rule); border-bottom-width: 2px; border-radius: 6px;
  padding: 3px 7px; white-space: nowrap;
}

/* Tables ----------------------------------------------------------------- */
.table-scroll { margin: 32px 0 0; overflow-x: auto; background: var(--paper); border-radius: 22px; }
.article table { border-collapse: collapse; width: 100%; min-width: 34rem; }
.article th, .article td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.article th { font: 800 10.5px/1.3 var(--sans); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-42); }
.article td { font: 500 15.5px/1.5 var(--sans); color: var(--ink-58); }
.article td:first-child { color: var(--ink); font-weight: 700; }
.article tbody tr:last-child td { border-bottom: 0; }
.num { font-variant-numeric: tabular-nums; }

figure { margin: 32px 0 0; }
figure img { width: 100%; height: auto; display: block; border-radius: 22px; background: var(--taupe); }
figcaption { font: 600 13px/1.5 var(--sans); color: var(--ink-38); margin-top: 12px; }
.shot-pair { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }

/* The payoff, and the one CTA ------------------------------------------- */

.whathedo {
  margin: 56px 0 0; padding: 36px 40px; background: var(--paper); border-radius: 26px;
}
.whathedo h2 { margin: 0 0 20px; font: 900 26px/1.2 var(--sans); letter-spacing: -.026em; }
.whathedo ol { margin: 0; padding-left: 22px; font-family: var(--serif); }
.whathedo li { margin-bottom: 14px; font: 400 18px/1.6 var(--serif); color: var(--ink-body); }
.whathedo li:last-child { margin-bottom: 0; }
.whathedo li::marker { color: var(--rust); font-weight: 800; }
.whathedo strong { font-family: var(--sans); font-weight: 800; font-size: .92em; color: var(--ink); }

.enlist {
  margin: 40px 0 0; padding: 40px 44px; background: var(--ink); border-radius: 32px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.enlist svg, .enlist img { width: 84px; height: auto; flex: none; }
.enlist > div { flex: 1; min-width: 260px; }
.enlist h3 { margin: 0; font: 900 30px/1.12 var(--sans); letter-spacing: -.028em; color: #fff; }
.enlist p { margin: 12px 0 22px; font: 500 16px/1.55 var(--sans); color: rgba(243,241,237,.55); }
.enlist .btn {
  display: inline-flex; align-items: center; height: 54px; padding: 0 28px;
  background: var(--marigold); border-radius: 27px;
  font: 800 15px/1 var(--sans); color: var(--ink);
}
.enlist .btn:hover { background: #F7B417; color: var(--ink); }

/* Next, and sources ------------------------------------------------------ */

.related { margin: 56px 0 0; padding-top: 32px; border-top: 1px solid var(--rule); }
.related > h2 { margin: 0 0 18px; font: 800 11px/1 var(--sans); letter-spacing: .11em; text-transform: uppercase; color: var(--ink-38); }
.related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.related li { margin: 0; }
.related a {
  display: block; padding: 22px 26px; background: var(--paper); border-radius: 22px;
  font: 900 21px/1.22 var(--sans); letter-spacing: -.022em; color: var(--ink); text-decoration: none;
}
.related a:hover { background: #fff; box-shadow: 0 2px 14px rgba(23,22,26,.06); }
.related .why { display: block; margin-top: 7px; font: 500 15px/1.5 var(--sans); color: var(--ink-42); letter-spacing: 0; }

.sources { margin: 48px 0 0; padding-top: 28px; border-top: 1px solid var(--rule); }
.sources h2 { margin: 0 0 12px; font: 800 11px/1 var(--sans); letter-spacing: .11em; text-transform: uppercase; color: var(--ink-38); }
.sources ol { margin: 0; padding-left: 20px; }
.sources li { margin-bottom: 8px; font: 500 13.5px/1.6 var(--sans); color: var(--ink-42); }

/* Index ------------------------------------------------------------------ */

.blog-hero { position: relative; overflow: hidden; background: var(--marigold); }
.blog-hero .sun  { position: absolute; left: 50%; margin-left: 250px; top: 44px; width: 180px; height: 180px; background: var(--marigold-lo); border-radius: 50%; opacity: .5; }
.blog-hero .sun2 { position: absolute; left: 50%; margin-left: 284px; top: 78px; width: 112px; height: 112px; background: #FFFAE6; border-radius: 50%; }
.blog-hero .inner { position: relative; max-width: var(--shell); margin: 0 auto; padding: 76px var(--pad) 68px; }
.eyebrow { font: 800 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: rgba(23,22,26,.55); margin: 0; }
.blog-hero h1 { margin: 20px 0 0; font: 900 clamp(38px, 6.6vw, 68px)/1.02 var(--sans); letter-spacing: -.04em; max-width: 820px; text-wrap: balance; }
.blog-hero .lede { margin: 22px 0 0; max-width: 580px; font: 500 19px/1.5 var(--sans); color: rgba(23,22,26,.66); text-wrap: pretty; }

.filters { max-width: var(--shell); margin: 0 auto; padding: 44px var(--pad) 0; display: flex; gap: 9px; flex-wrap: wrap; }
.filters a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 19px; border-radius: 22px; background: var(--paper);
  font: 800 14px/1 var(--sans); color: var(--ink-58);
}
.filters a::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dot, var(--ink-38)); }
.filters a:first-child::before { display: none; }
.filters a:hover { background: var(--ink); color: #fff; }

.cluster-block { max-width: var(--shell); margin: 0 auto; padding: 44px var(--pad) 0; }
.cluster-block > header { margin-bottom: 22px; }
.cluster-block > header h2 { margin: 0; font: 900 clamp(26px,3.6vw,34px)/1.1 var(--sans); letter-spacing: -.03em; }
.cluster-block > header p { margin: 10px 0 0; max-width: 620px; font: 500 16px/1.55 var(--sans); color: var(--ink-58); }
.cluster-block > header .count { float: right; font: 700 13px/1 var(--sans); color: var(--ink-38); }
.cluster-block > header .hub { display: inline-block; margin-top: 12px; font: 800 14px/1 var(--sans); color: var(--rust); }

.posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px)  { .posts { grid-template-columns: 1fr; } }
.posts > li { margin: 0; }
.posts a { display: flex; flex-direction: column; height: 100%; background: var(--paper); border-radius: 26px; overflow: hidden; color: inherit; }
.posts a:hover { color: inherit; box-shadow: 0 4px 20px rgba(23,22,26,.07); }
.posts .art { position: relative; height: 196px; overflow: hidden; background: var(--marigold); }
.posts .art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.posts .art .f { position: absolute; left: 0; right: 0; bottom: 0; height: 52px; background: var(--cream); }
.posts .art .l { position: absolute; left: 0; right: 0; bottom: 49px; height: 3px; background: #E4E0D7; }
.posts .art .m { position: absolute; left: 41px; bottom: 30px; width: 180px; height: 20px; background: var(--taupe); border-radius: 7px; }
.posts .body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.posts .chip { display: flex; align-items: center; gap: 9px; }
.posts .chip span:first-child { padding: 5px 10px; background: var(--cream); border-radius: 11px; font: 800 10.5px/1.3 var(--sans); letter-spacing: .09em; text-transform: uppercase; color: var(--ink-58); }
.posts .chip span:last-child { font: 600 12px/1 var(--sans); color: var(--ink-38); }
.posts h3 { margin: 16px 0 0; font: 900 22px/1.16 var(--sans); letter-spacing: -.024em; }
.posts p { margin: 11px 0 0; flex: 1; font: 500 15px/1.5 var(--sans); color: rgba(23,22,26,.52); text-wrap: pretty; }
.posts .kw { margin-top: 20px; font: 700 12px/1 var(--mono); color: var(--ink-38); }

.signoff { max-width: var(--shell); margin: 68px auto 0; padding: 0 var(--pad); }
.signoff .box {
  background: var(--ink); border-radius: 32px; padding: 52px 56px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.signoff .box > div { flex: 1; min-width: 300px; }
.signoff h2 { margin: 0; font: 900 34px/1.1 var(--sans); color: #fff; letter-spacing: -.03em; }
.signoff p { margin: 14px 0 0; font: 500 16px/1.55 var(--sans); color: rgba(243,241,237,.55); text-wrap: pretty; }
.signoff .btn { display: inline-flex; align-items: center; height: 54px; padding: 0 28px; background: var(--marigold); border-radius: 27px; font: 800 15px/1 var(--sans); color: var(--ink); }

/* Hub pages -------------------------------------------------------------- */
.hub-hero { max-width: var(--read); margin: 0 auto; padding: 44px var(--pad) 0; }

/* Footer ----------------------------------------------------------------- */
footer.site { margin-top: 96px; background: var(--ink); color: rgba(243,241,237,.5); }
footer.site .wrap {
  max-width: var(--shell); margin: 0 auto; padding: 52px var(--pad);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
footer.site .brand { display: flex; align-items: center; gap: 11px; }
footer.site .brand img { width: 28px; height: 28px; border-radius: 22.4%; display: block; }
footer.site .brand b { font: 800 15px/1 var(--sans); color: #fff; }
footer.site .brand span { font: 600 13.5px/1 var(--sans); }
footer.site nav { display: flex; gap: 26px; flex-wrap: wrap; }
footer.site a { font: 600 13.5px/1 var(--sans); color: rgba(243,241,237,.5); }
footer.site a:hover { color: #fff; }

/* Motion, focus, print --------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .posts a, .filters a, .related a, .masthead .get { transition: background .15s ease, color .15s ease, box-shadow .18s ease; }
  .blog-hero .sun { animation: bl-sun 9s ease-in-out infinite; }
  @keyframes bl-sun { 0%,100% { transform: scale(1); opacity: .5 } 60% { transform: scale(1.12); opacity: .28 } }
}
a:focus-visible, button:focus-visible { outline: 3px solid var(--rust); outline-offset: 3px; border-radius: 6px; }
@media print {
  .masthead, .progress, .enlist, .related, .filters, .signoff, footer.site { display: none; }
  body { background: #fff; }
  .article p { font-size: 11pt; }
}

/* The drawn hero, used until a generated illustration is dropped into
   web/blog/img/<slug>.webp. Same scene grammar as the design's cards. */
.post-hero .scene-dog {
  position: absolute; left: 50%; bottom: 62px;
  width: clamp(150px, 20vw, 210px); height: auto;
  transform: translateX(-50%); z-index: 2;
}
.post-hero .frame { display: block; }
.posts .art .scene-dog { position: absolute; left: 50%; bottom: 22px; width: 132px; transform: translateX(-50%); z-index: 2; }
@media (prefers-reduced-motion: no-preference) {
  .post-hero .scene-dog { animation: hero-bob 5.5s ease-in-out infinite; }
  @keyframes hero-bob { 0%,100% { transform: translateX(-50%) translateY(0) } 50% { transform: translateX(-50%) translateY(-6px) } }
}

/* ---- Phones -----------------------------------------------------------
   The reading column is fixed at the designed 780px, which on a phone means
   19.5px Newsreader in a 335px column: about 38 characters a line, short
   enough to break the rhythm of a sentence every few words. Dropping the body
   a step and tightening the frame gets it back to the mid-forties, which is
   where a serif wants to be on a narrow measure. */
@media (max-width: 560px) {
  .article p { font-size: 17.5px; line-height: 1.62; }
  .article ul, .article ol { font-size: 17px; line-height: 1.58; }
  .steps > li { font-size: 17px; padding-left: 40px; }
  .steps > li::before { width: 26px; height: 26px; font-size: 12px; }
  .aside { padding: 18px 18px; gap: 12px; border-radius: 18px; }
  .aside svg, .aside img { width: 38px; }
  .aside p { font-size: 15.5px; }
  .field, .pull { padding: 22px 20px; border-radius: 18px; }
  .note { padding: 20px 18px; border-radius: 18px; }
  .whathedo { padding: 26px 22px; border-radius: 20px; }
  .whathedo li { font-size: 17px; }
  .enlist { padding: 28px 22px; border-radius: 24px; gap: 20px; }
  .enlist h3 { font-size: 24px; }
  .enlist svg, .enlist img { width: 64px; }
  .related a { padding: 18px 20px; font-size: 18px; border-radius: 18px; }
  .signoff .box { padding: 30px 24px; border-radius: 24px; }
  .signoff h2 { font-size: 26px; }
  .post-hero { padding: 0 16px; }
  .post-hero .frame { border-radius: 20px; }
  /* A long slug in a code span should wrap rather than push the column open. */
  .article code, .article kbd { word-break: break-word; }
  .article pre { padding: 16px 14px; font-size: 12.5px; border-radius: 14px; }
}

/* Touch targets. A 14px-tall text link in a footer is a 14px-tall target, and
   the ones here sit in a row with 26px between them. Padding the link rather
   than growing the type keeps the design and gives a thumb something to hit. */
@media (pointer: coarse), (max-width: 560px) {
  .masthead nav a, footer nav a, footer a, .related a, .filters a {
    display: inline-flex; align-items: center; min-height: 44px;
  }
  .related a { display: block; }          /* two-line card, already tall enough */
  footer nav { gap: 8px 22px; }
  /* min-height is ignored on an inline box, so state the box too. */
  .cluster-tag { display: inline-flex; align-items: center; min-height: 38px; }
}
