/* ==========================================================================
   Wasoolo blog — additive layer over styles.css (loaded after it).
   Only new classes: nothing from the main design system is redefined.
   Sky Glass tokens only · mobile-first · clean at 360px and 1440px.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Blog-local tokens
   -------------------------------------------------------------------------- */
:root {
  --blog-col: 748px;
  --rail-h: 60px;
  --ring: 0 0 0 1px rgba(11, 27, 39, 0.06);
  --ring-sky: 0 0 0 1px rgba(3, 105, 161, 0.14);
  --lift: 0 24px 48px -30px rgba(3, 105, 161, 0.5), 0 8px 20px -14px rgba(11, 27, 39, 0.14);
  --lift-hi: 0 34px 64px -32px rgba(3, 105, 161, 0.55), 0 12px 26px -14px rgba(11, 27, 39, 0.16);
  --glass: rgba(255, 255, 255, 0.72);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.42, 0.44, 1);
}

/* --------------------------------------------------------------------------
   1. Shells
   -------------------------------------------------------------------------- */
.blog-article { padding: 22px 0 8px; }
@media (min-width: 900px) { .blog-article { padding: 30px 0 8px; } }

/* The reading column — same width as .prose so everything lines up. */
.blog-col { max-width: var(--blog-col); margin-inline: auto; }

/* --------------------------------------------------------------------------
   2. Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-400);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--ink-600); font-weight: 600; padding: 2px 0; }
.breadcrumb a:hover { color: var(--sky-700); }
.breadcrumb .sep { color: rgba(11, 27, 39, 0.28); padding: 0 7px; }
.breadcrumb [aria-current="page"] {
  color: var(--ink-400);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* --------------------------------------------------------------------------
   3. Language switcher (two links in one segmented pill)
   -------------------------------------------------------------------------- */
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(3, 105, 161, 0.16);
  box-shadow: var(--shadow-xs);
  flex: 0 0 auto;
}
.lang-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-600);
  white-space: nowrap;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}
.lang-pill a:hover { color: var(--sky-700); background: var(--sky-50); }
.lang-pill a.on {
  color: #fff;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
  box-shadow: 0 3px 10px rgba(14, 165, 233, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.lang-pill a.on:hover { color: #fff; }

/* --------------------------------------------------------------------------
   4. Type pills & category chips
   -------------------------------------------------------------------------- */
.type-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--sky-700);
  background: var(--sky-100);
}
.type-pill.type-problem    { color: #B45309; background: #FEF3C7; }
.type-pill.type-guide      { color: var(--sky-700); background: var(--sky-100); }
.type-pill.type-money      { color: var(--green); background: rgba(22, 163, 74, 0.12); }
.type-pill.type-comparison { color: var(--ink-600); background: rgba(11, 27, 39, 0.07); }

.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.845rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink-600);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 27, 39, 0.09);
  box-shadow: var(--shadow-xs);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out),
              color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
              transform 0.2s var(--ease-out);
}
.cat-chip .n {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-400);
  background: rgba(11, 27, 39, 0.05);
  border-radius: 999px;
  padding: 1px 7px;
  transition: inherit;
}
a.cat-chip:hover {
  color: var(--sky-700);
  background: #fff;
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 6px 16px -8px rgba(3, 105, 161, 0.4);
  transform: translateY(-1px);
}
.cat-chip.on,
.cat-chip[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--sky-600), var(--sky-700));
  border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(2, 132, 199, 0.7);
}
.cat-chip.on .n,
.cat-chip[aria-pressed="true"] .n { color: #fff; background: rgba(255, 255, 255, 0.22); }
a.cat-chip.on:hover,
.cat-chip[aria-pressed="true"]:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
}
.cat-chip.is-static {
  min-height: 0;
  color: var(--ink-600);
  background: var(--sky-50);
  border-color: rgba(3, 105, 161, 0.12);
  box-shadow: none;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 10px;
}

.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }

/* --------------------------------------------------------------------------
   5. HUB — the editorial hero
   -------------------------------------------------------------------------- */
.hub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 46px 0 40px;
  text-align: center;
  background:
    radial-gradient(720px 380px at 12% -25%, rgba(224, 242, 254, 0.95), transparent 64%),
    radial-gradient(760px 420px at 92% -8%, rgba(207, 231, 247, 0.8), transparent 62%),
    linear-gradient(180deg, var(--sky-50), #fff 92%);
  border-bottom: var(--border-soft);
}
@media (min-width: 900px) { .hub-hero { padding: 74px 0 62px; } }

/* Soft aurora, drawn behind everything and never interactive. */
.hub-hero::before,
.hub-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  pointer-events: none;
}
.hub-hero::before {
  width: 420px; height: 420px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.5), transparent 68%);
}
.hub-hero::after {
  width: 380px; height: 380px;
  top: -140px; right: -110px;
  background: radial-gradient(circle, rgba(3, 105, 161, 0.34), transparent 68%);
}

.hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sky-700);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(3, 105, 161, 0.16);
  box-shadow: 0 6px 18px -12px rgba(3, 105, 161, 0.6);
  margin-bottom: 20px;
}
.hub-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
  animation: hubPulse 2.4s var(--ease-out) infinite;
}
@keyframes hubPulse {
  0%   { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.hub-title {
  font-size: clamp(2.05rem, 6.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  max-width: 15ch;
  margin: 0 auto 16px;
  text-wrap: balance;
}
.hub-title em {
  font-style: normal;
  background: linear-gradient(115deg, var(--sky-600) 8%, var(--sky-500) 52%, #38BDF8 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hub-sub {
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  line-height: 1.66;
  color: var(--ink-600);
  max-width: 60ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   6. HUB — search
   -------------------------------------------------------------------------- */
.hub-search { max-width: 560px; margin: 26px auto 0; }
.search-field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-field svg {
  position: absolute;
  left: 18px;
  width: 19px; height: 19px;
  color: var(--ink-400);
  pointer-events: none;
  transition: color 0.2s var(--ease-out);
}
.search-field input {
  width: 100%;
  min-height: 54px;
  padding: 15px 46px 15px 47px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 27, 39, 0.1);
  border-radius: 999px;
  box-shadow: 0 14px 34px -22px rgba(3, 105, 161, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
              background 0.2s var(--ease-out);
}
.search-field input::placeholder { color: var(--ink-400); }
.search-field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16),
              0 18px 40px -24px rgba(3, 105, 161, 0.6);
}
.search-field:focus-within svg { color: var(--sky-600); }
.search-field input::-webkit-search-cancel-button { display: none; }

.search-clear {
  position: absolute;
  right: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 27, 39, 0.06);
  color: var(--ink-600);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.search-clear:hover { background: rgba(11, 27, 39, 0.11); color: var(--ink-900); }
.search-clear svg { position: static; width: 15px; height: 15px; color: currentColor; }
.is-searching .search-clear { display: inline-flex; }

.hub-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin: 22px 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-400);
}
.hub-stats span { display: inline-flex; align-items: center; gap: 7px; }
.hub-stats b { color: var(--ink-900); font-weight: 700; }
.hub-stats .bar { width: 1px; height: 13px; background: rgba(11, 27, 39, 0.14); }
@media (max-width: 479px) { .hub-stats .bar { display: none; } }

/* --------------------------------------------------------------------------
   7. HUB — language, centred in the hero
   -------------------------------------------------------------------------- */
.hub-lang { display: flex; justify-content: center; margin: 20px 0 0; }

/* The band head can carry one secondary link on the right. */
.band-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-600);
  white-space: nowrap;
  transition: color 0.2s var(--ease-out);
}
.band-link:hover { color: var(--sky-700); }
.band-link .n {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink-400);
  background: rgba(11, 27, 39, 0.06);
  border-radius: 999px;
  padding: 2px 8px;
}
.band-link:hover .n { color: var(--sky-700); background: var(--sky-100); }

/* --------------------------------------------------------------------------
   8. HUB — featured article
   -------------------------------------------------------------------------- */
.hub-band { padding: 40px 0 0; }
.hub-band:last-of-type { padding-bottom: 8px; }
@media (min-width: 900px) { .hub-band { padding-top: 56px; } }

.band-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
  margin: 0 0 20px;
}
/* Below 560px the title and its secondary link stop fighting for one line. */
@media (max-width: 559px) {
  .band-head { flex-direction: column; align-items: flex-start; }
  .band-head .band-note { order: 3; }
}
.band-title {
  font-size: clamp(1.15rem, 2.6vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--ink-900);
  margin: 0;
}
.band-note { font-size: 0.86rem; color: var(--ink-400); margin: 0; }

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--ring), var(--lift);
  overflow: hidden;
  color: var(--ink-900);
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.feature-card:hover {
  color: var(--ink-900);
  transform: translateY(-4px);
  box-shadow: var(--ring-sky), var(--lift-hi);
}
@media (min-width: 860px) {
  .feature-card { grid-template-columns: 1.08fr 1fr; align-items: stretch; }
}
.feature-body { padding: 26px 24px 28px; display: flex; flex-direction: column; }
@media (min-width: 860px) { .feature-body { padding: 40px; } }
.feature-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 16px; }
.feature-card h3 {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.028em;
  margin: 0 0 12px;
  text-wrap: balance;
  transition: color 0.25s var(--ease-out);
}
.feature-card:hover h3 { color: var(--sky-700); }
.feature-card p {
  font-size: 1rem;
  line-height: 1.66;
  color: var(--ink-600);
  margin: 0 0 20px;
  max-width: 46ch;
}
.feature-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: auto;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--sky-700);
}
.read-more svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-spring); }
.feature-card:hover .read-more svg,
.post-card:hover .read-more svg { transform: translateX(4px); }

/* The visual half: the article's own hero figure, cropped into the card. */
.feature-art {
  position: relative;
  min-height: 190px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(420px 260px at 70% 15%, rgba(224, 242, 254, 0.95), transparent 68%),
    linear-gradient(150deg, #F7FBFE, var(--sky-50));
  border-top: var(--border-soft);
}
@media (min-width: 860px) {
  .feature-art { border-top: 0; border-left: var(--border-soft); min-height: 100%; }
}
.feature-art > * { width: 100%; max-width: 420px; margin: 0; }
.feature-art .fig { margin: 0; overflow: visible; padding: 0; }
.feature-art figcaption { display: none; }
.feature-art img { width: 100%; border-radius: 14px; display: block; }

/* --------------------------------------------------------------------------
   9. HUB — category grid
   -------------------------------------------------------------------------- */
.cat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}
@media (min-width: 700px) { .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px 17px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--ring), var(--shadow-sm);
  color: var(--ink-900);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
@media (min-width: 700px) { .cat-card { padding: 22px 20px 20px; gap: 10px; } }
/* A sky wash that grows from the corner on hover — nothing moves layout. */
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px 160px at 100% 0%, rgba(224, 242, 254, 0.95), transparent 70%);
  opacity: 0;
  transition: opacity 0.32s var(--ease-out);
}
.cat-card > * { position: relative; }
.cat-card:hover {
  color: var(--ink-900);
  transform: translateY(-4px);
  box-shadow: var(--ring-sky), 0 20px 40px -26px rgba(3, 105, 161, 0.55);
}
.cat-card:hover::before { opacity: 1; }

.cat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(140deg, var(--sky-500), var(--sky-700));
  box-shadow: 0 8px 18px -10px rgba(3, 105, 161, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.32s var(--ease-spring);
}
.cat-card:hover .cat-ico { transform: scale(1.07) rotate(-3deg); }
.cat-ico svg { width: 21px; height: 21px; }
.cat-card h3 {
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
  transition: color 0.25s var(--ease-out);
}
.cat-card:hover h3 { color: var(--sky-700); }
.cat-card p {
  font-size: 0.845rem;
  line-height: 1.52;
  color: var(--ink-600);
  margin: 0;
}
.cat-card .n {
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-400);
}

/* --------------------------------------------------------------------------
   9b. Depth pass — the details that make it read as built, not assembled
   -------------------------------------------------------------------------- */

/* A faint ruled mesh under the hero's colour, so the gradient has structure
   instead of being a flat wash. Masked to fade out before the text. */
.hub-hero::before {
  background:
    radial-gradient(circle, rgba(14, 165, 233, 0.5), transparent 68%);
}
.hub-hero .container { position: relative; z-index: 1; }
.hub-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(3, 105, 161, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 105, 161, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(circle at 50% 18%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 18%, #000, transparent 72%);
}

/* Cards follow the cursor with a soft spotlight. --mx/--my are set by the hub
   script; with no JS the fallback centre keeps it invisible, never broken. */
.cat-card::after,
.post-card .spot {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(14, 165, 233, 0.16), transparent 62%);
}
.cat-card:hover::after,
.post-card:hover .spot { opacity: 1; }
.post-card > *:not(.spot) { position: relative; z-index: 1; }

/* The active topic on a category page reads as chosen, not merely hovered. */
.cat-card.is-active {
  box-shadow: 0 0 0 1.5px var(--sky-500), 0 18px 38px -24px rgba(3, 105, 161, 0.6);
  background: linear-gradient(155deg, #fff, var(--sky-50));
}
.cat-card.is-active .cat-ico { transform: scale(1.05); }
.cat-card.is-active h3 { color: var(--sky-700); }

/* A slow gradient ring around the spotlight article. */
.feature-card { position: relative; }
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1.5px;
  pointer-events: none;
  background: linear-gradient(115deg,
    rgba(14, 165, 233, 0.85), rgba(3, 105, 161, 0.25) 38%,
    rgba(14, 165, 233, 0) 55%, rgba(56, 189, 248, 0.7) 88%);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.feature-card:hover::before { opacity: 1; animation: ringDrift 5.5s linear infinite; }
@keyframes ringDrift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

/* Numbers line up in columns wherever they are counted. */
.hub-stats b, .band-note, .cat-card .n, .band-link .n, .cat-chip .n {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card::before { animation: none; }
  .cat-card::after, .post-card .spot { display: none; }
}

/* --------------------------------------------------------------------------
   10. Post grid & cards
   -------------------------------------------------------------------------- */
.post-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 980px) { .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; } }

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 21px 20px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--ring), var(--shadow-sm);
  color: var(--ink-900);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
/* Accent hairline that draws itself across the top on hover. */
.post-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.post-card:hover {
  color: var(--ink-900);
  transform: translateY(-5px);
  box-shadow: var(--ring-sky), var(--lift);
}
.post-card:hover::after { transform: scaleX(1); }
.post-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
}
.post-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -0.018em;
  color: var(--ink-900);
  margin: 0 0 8px;
  text-wrap: balance;
  transition: color 0.25s var(--ease-out);
}
.post-card:hover .post-card-title { color: var(--sky-700); }
.post-card-desc {
  font-size: 0.915rem;
  line-height: 1.6;
  color: var(--ink-600);
  margin: 0 0 18px;
}
.post-card .post-meta { margin-top: auto; font-size: 0.8rem; }
.post-card .read-more { margin-top: 12px; font-size: 0.86rem; }

/* --------------------------------------------------------------------------
   11. Empty & no-results states
   -------------------------------------------------------------------------- */
.blog-empty,
.no-results {
  text-align: center;
  color: var(--ink-600);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--ring), var(--shadow-xs);
  padding: 46px 24px;
  margin: 0;
}
.no-results { display: none; }
.no-results strong { display: block; color: var(--ink-900); font-size: 1.05rem; margin-bottom: 6px; }
.no-results .q { color: var(--sky-700); font-weight: 700; }
.is-empty .no-results { display: block; }
.is-empty .post-grid { display: none; }

/* A filtered-out card or band is gone, not merely transparent: [hidden] has to
   beat the display:flex / display:grid these components set. */
.post-card[hidden],
.hub-band[hidden],
.cat-card[hidden] { display: none !important; }
.no-results .q { display: block; color: var(--sky-700); font-weight: 700; margin-bottom: 4px; }
.no-results .q:empty { display: none; }

/* --------------------------------------------------------------------------
   12. Reveal-on-scroll (progressive: no JS = already visible)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
/* Filtering must never re-run the entrance animation. */
.filtering .reveal { transition: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hub-eyebrow .dot { animation: none; }
  .post-card, .cat-card, .feature-card, .cat-chip, .read-more svg { transition: none; }
  .post-card:hover, .cat-card:hover, .feature-card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   13. Article head
   -------------------------------------------------------------------------- */
.article-head { margin: 0 0 22px; }
.article-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}
.article-head h1 {
  font-size: clamp(1.78rem, 5.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.standfirst {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ink-600);
  margin: 0 0 16px;
  text-wrap: pretty;
}
@media (min-width: 640px) { .standfirst { font-size: 1.14rem; } }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--ink-400);
  margin: 0;
}
.post-meta .dot { color: rgba(11, 27, 39, 0.25); }

.article-hero { margin: 24px 0 30px; }
.article-hero > *:last-child { margin-bottom: 0; }

/* Reading-progress bar, pinned under the site header. */
.read-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-700));
  z-index: 40;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   14. Figures — semantic HTML, so they reflow on a phone and Google reads them
   -------------------------------------------------------------------------- */
.fig { margin: 32px 0; }
.fig-card {
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--ring), 0 18px 40px -30px rgba(3, 105, 161, 0.5);
  overflow: hidden;
}
.fig-head {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px 18px 14px;
  border-bottom: var(--border-soft);
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.85), rgba(255, 255, 255, 0));
}
.fig-head::before {
  content: "";
  flex: 0 0 auto;
  width: 3px;
  align-self: stretch;
  min-height: 19px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--sky-500), var(--sky-700));
}
.fig-head h4 {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: -0.012em;
  color: var(--ink-900);
  margin: 0;
}
.fig-body { padding: 8px 18px 16px; }
@media (min-width: 640px) {
  .fig-head { padding: 18px 22px 15px; }
  .fig-body { padding: 10px 22px 18px; }
}
.fig-note {
  display: flex;
  gap: 8px;
  padding: 0 18px 16px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink-400);
}
.fig-note::before {
  content: "";
  flex: 0 0 auto;
  width: 5px; height: 5px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--sky-500);
}
@media (min-width: 640px) { .fig-note { padding: 0 22px 18px; } }

.fig figcaption {
  margin-top: 11px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-400);
  text-align: center;
  text-wrap: pretty;
}

/* --- math: label / value rows that stack on a narrow phone ---------------- */
.fig-rows { display: flex; flex-direction: column; }
.fig-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 14px;
  padding: 11px 12px;
  border-radius: 11px;
}
.fig-row:nth-child(odd) { background: rgba(240, 249, 255, 0.72); }
.fig-row .k { font-size: 0.9rem; line-height: 1.45; color: var(--ink-600); flex: 1 1 62%; min-width: 0; }
.fig-row .v {
  font-size: 0.98rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  margin-inline-start: auto;
}
.v-in      { color: var(--green); }
.v-out     { color: var(--red); }
.v-muted,
.v-settled { color: var(--ink-400); }
.v-ink     { color: var(--ink-900); }

.fig-total {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 14px;
  margin-top: 10px;
  padding: 15px 14px;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--sky-50), rgba(224, 242, 254, 0.6));
  box-shadow: inset 0 0 0 1px rgba(3, 105, 161, 0.14);
}
.fig-total .k { font-size: 0.93rem; font-weight: 700; color: var(--ink-900); flex: 1 1 55%; }
.fig-total .v {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  margin-inline-start: auto;
}

/* --- steps / timeline: a numbered rail ----------------------------------- */
.fig-steps { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; }
.fig-steps li {
  position: relative;
  display: flex;
  gap: 13px;
  padding: 0 0 18px 0;
}
.fig-steps li:last-child { padding-bottom: 2px; }
/* the connecting line runs behind the badges */
.fig-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(3, 105, 161, 0.28), rgba(3, 105, 161, 0.07));
}
.step-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--sky-500), var(--sky-700));
  box-shadow: 0 6px 14px -8px rgba(3, 105, 161, 0.9);
}
.step-badge.is-when {
  width: auto;
  min-width: 32px;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  margin-top: 3px;
}
.fig-steps .s-body { padding-top: 4px; min-width: 0; }
.fig-steps .s-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-900);
}
.fig-steps .s-text {
  display: block;
  margin-top: 3px;
  font-size: 0.875rem;
  line-height: 1.56;
  color: var(--ink-600);
}
.fig-steps li:not(:last-child)::before { left: 15px; }
.fig-steps.is-when li:not(:last-child)::before { left: 15px; top: 34px; }

/* --- compare / do-and-dont: two columns that stack ----------------------- */
.fig-cols { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 4px; }
@media (min-width: 620px) { .fig-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
.fig-colcard {
  border-radius: 14px;
  padding: 14px 15px 15px;
  background: rgba(240, 249, 255, 0.6);
  box-shadow: inset 0 0 0 1px rgba(11, 27, 39, 0.06);
}
.fig-colcard.is-good { background: rgba(22, 163, 74, 0.06); box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.18); }
.fig-colcard.is-bad  { background: rgba(220, 38, 38, 0.05); box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.16); }
.fig-colhead {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.fig-colhead .mk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}
.is-good .mk { background: var(--green); }
.is-bad  .mk { background: var(--red); }
.fig-colcard ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.fig-colcard li {
  display: flex;
  gap: 9px;
  font-size: 0.885rem;
  line-height: 1.55;
  color: var(--ink-600);
}
.fig-colcard li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: rgba(11, 27, 39, 0.22);
}
.is-good li::before { background: var(--green); }
.is-bad  li::before { background: var(--red); }

/* --- checklist ----------------------------------------------------------- */
.fig-check { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fig-check li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-600);
}
.fig-check li .tickbox {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(140deg, var(--sky-500), var(--sky-700));
  box-shadow: 0 5px 12px -7px rgba(3, 105, 161, 0.9);
}
.fig-check li .tickbox svg { width: 13px; height: 13px; }
.fig-check b { color: var(--ink-900); font-weight: 700; }

/* --- stat ---------------------------------------------------------------- */
.fig-stats { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 4px; }
@media (min-width: 560px) { .fig-stats { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } }
.fig-stat {
  padding: 16px 16px 15px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--sky-50), rgba(255, 255, 255, 0.4));
  box-shadow: inset 0 0 0 1px rgba(3, 105, 161, 0.12);
  text-align: center;
}
.fig-stat .big {
  display: block;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--sky-700);
}
.fig-stat .cap {
  display: block;
  margin-top: 6px;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--ink-600);
}

/* --- compare: two columns; on a phone each cell names its own column ------ */
.fig-compare { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.cmp-row { display: grid; grid-template-columns: 1fr; gap: 6px; }
.cmp-row .cmp-k {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-600);
  letter-spacing: 0.01em;
}
.cmp-row .cmp-a,
.cmp-row .cmp-b {
  font-size: 0.89rem;
  line-height: 1.5;
  color: var(--ink-900);
  padding: 11px 13px;
  border-radius: 11px;
}
.cmp-row .cmp-a { background: #F6F8FA; box-shadow: inset 0 0 0 1px rgba(11, 27, 39, 0.06); }
.cmp-row .cmp-b { background: rgba(240, 249, 255, 0.9); box-shadow: inset 0 0 0 1px rgba(3, 105, 161, 0.14); font-weight: 600; }
.cmp-row i {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 3px;
}
.cmp-row.cmp-head { display: none; }
@media (min-width: 660px) {
  .fig-compare { gap: 8px; }
  .cmp-row { grid-template-columns: 1fr 1fr; align-items: stretch; gap: 8px; }
  .fig-compare.has-k .cmp-row { grid-template-columns: minmax(0, 0.85fr) 1fr 1fr; }
  .cmp-row .cmp-k { display: flex; align-items: center; padding: 11px 4px 11px 0; }
  .cmp-row i { display: none; }
  .cmp-row.cmp-head { display: grid; }
  .cmp-row.cmp-head .cmp-a,
  .cmp-row.cmp-head .cmp-b {
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 10px 13px;
  }
  .cmp-row.cmp-head .cmp-a { color: var(--ink-600); background: #EEF2F6; }
  .cmp-row.cmp-head .cmp-b { color: var(--sky-700); background: var(--sky-100); }
}

/* --- stat bars ----------------------------------------------------------- */
.fig-bars { display: flex; flex-direction: column; gap: 15px; margin-top: 6px; }
.fig-bar .bar-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.fig-bar .k { font-size: 0.89rem; font-weight: 600; color: var(--ink-900); }
.fig-bar .v {
  font-size: 0.89rem;
  font-weight: 700;
  color: var(--sky-700);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fig-bar .track {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(11, 27, 39, 0.07);
  overflow: hidden;
}
.fig-bar .fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  min-width: 8px;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-700));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* --- timeline extras ----------------------------------------------------- */
.fig-steps.is-timeline li { align-items: flex-start; flex-wrap: wrap; }
.tl-right {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-inline-start: auto;
  padding-top: 4px;
}
.tl-amt {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.tl-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.tl-chip.st-paid { color: #15803D; background: #DCFCE7; }
.tl-chip.st-due  { color: var(--sky-700); background: var(--sky-100); }
.tl-chip.st-late { color: #B45309; background: #FEF3C7; }

/* --- checklist: an unticked line is a "not yet", not a failure ------------ */
.fig-check li.is-off { color: var(--ink-400); }
.fig-check li .tickbox.is-off {
  background: #fff;
  box-shadow: inset 0 0 0 1.6px rgba(148, 163, 184, 0.8);
}

/* --------------------------------------------------------------------------
   15. Photos & screenshots
   -------------------------------------------------------------------------- */
.blog-photo { margin: 30px 0; }
.blog-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: var(--border-soft);
  box-shadow: 0 18px 40px -26px rgba(3, 105, 161, 0.45);
}
.blog-shot {
  max-width: 420px;
  margin: 30px auto;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(160deg, #14293A, var(--ink-900) 60%);
  box-shadow: 0 26px 54px -28px rgba(3, 105, 161, 0.55),
              inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.blog-shot img { width: 100%; border-radius: 22px; background: var(--card); }
.blog-shot figcaption { color: rgba(255, 255, 255, 0.72); padding: 0 6px 4px; margin-top: 12px; }

/* --------------------------------------------------------------------------
   15b. The class video — a facade, not an iframe
   --------------------------------------------------------------------------
   The page ships a poster and a play button. YouTube is only ever loaded after
   the reader asks for it, so an article with a class in it stays as fast as one
   without, and nothing third-party runs for a reader who never presses play.
   -------------------------------------------------------------------------- */
.blog-video {
  margin: 34px 0;
  border-radius: 22px;
  background: linear-gradient(150deg, #0E2233, var(--ink-900) 62%);
  box-shadow: var(--lift);
  overflow: hidden;
}
.blog-video .v-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0B1B27;
}
.blog-video .v-play {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: #fff;
  text-align: start;
}
.blog-video .v-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.blog-video .v-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 50%,
    rgba(11, 27, 39, 0) 30%, rgba(11, 27, 39, 0.28) 100%);
  transition: background 0.3s ease;
}
.blog-video .v-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.28s var(--ease-spring);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}
.blog-video .v-btn svg { width: 100%; height: auto; display: block; }
.blog-video .v-btn-bg { fill: #FF0000; }
.blog-video .v-play:hover img { transform: scale(1.035); }
.blog-video .v-play:hover .v-btn { transform: translate(-50%, -50%) scale(1.08); }
.blog-video .v-play:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: -3px;
}
.blog-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.blog-video .v-cap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 18px;
  padding: 14px 20px 16px;
}
.blog-video .v-kicker {
  grid-column: 1;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7DD3FC;
}
.blog-video .v-title {
  grid-column: 1;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
}
.blog-video .v-out {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0B1B27;
  background: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), background 0.2s ease;
}
.blog-video .v-out svg { width: 15px; height: 15px; }
.blog-video .v-out:hover { transform: translateY(-1px); background: #7DD3FC; }
.blog-video .v-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}
@media (max-width: 560px) {
  .blog-video .v-btn { width: 62px; }
  .blog-video .v-title { font-size: 0.95rem; }
  .blog-video .v-cap { grid-template-columns: 1fr; padding: 13px 16px 15px; }
  .blog-video .v-out { grid-column: 1; grid-row: auto; margin-top: 11px; justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-video .v-play img,
  .blog-video .v-btn { transition: none; }
  .blog-video .v-play:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   16. Body extras
   -------------------------------------------------------------------------- */
.blog-toc { margin: 0 0 34px; }
.blog-faq { display: grid; gap: 12px; margin: 30px 0; }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.4em 0 1.8em;
  border-radius: 14px;
}
.table-wrap .blog-table {
  display: table;
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  margin: 0;
  font-size: 0.93rem;
  background: var(--card);
  border: var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.table-wrap .blog-table th,
.table-wrap .blog-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: var(--border-soft);
  vertical-align: top;
}
.table-wrap .blog-table th {
  background: var(--sky-50);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.table-wrap .blog-table tr:last-child td { border-bottom: 0; }

/* In-article CTA band — must beat the .prose rules it sits inside. */
.blog-cta { width: 100%; margin: 40px auto; padding: 34px 22px; }
@media (min-width: 900px) { .blog-cta { padding: 42px 34px; } }
.blog-cta .cta-h {
  font-size: clamp(1.3rem, 3.4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
}
.blog-cta .cta-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0 auto 22px;
}
.blog-cta a { color: #fff; text-decoration: none; font-weight: 700; }
.blog-cta a:hover { color: #fff; }
.blog-cta .btn-store small,
.blog-cta .btn-store strong { color: #fff; }
.blog-cta .hero-badges { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   17. Related reading
   -------------------------------------------------------------------------- */
.related { margin: 46px 0 8px; padding-top: 34px; border-top: var(--border-soft); }
.related-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0 0 18px;
}
