
  /* ── Blog index helpers ── */
  .lbp-blob-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
  .lbp-blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }

  /* ── Hero search bar ── */
  .bl-search {
    position: relative; display: flex; align-items: center;
    background: #fff; border: 1.5px solid var(--hair); border-radius: 99px;
    padding: 6px 6px 6px 22px;
    max-width: 520px; width: 100%;
    transition: border-color .2s, box-shadow .2s;
  }
  .bl-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
  }
  .bl-search svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
  .bl-search input {
    flex: 1; border: 0; outline: 0; background: transparent;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 15px; color: var(--ink); padding: 12px 10px; min-width: 0;
  }
  .bl-search input::placeholder { color: var(--muted); }
  .bl-search-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--ink); color: #fff; border: 0; border-radius: 99px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600; font-size: 13.5px; padding: 10px 18px;
    cursor: pointer; transition: background .18s, transform .15s;
  }
  .bl-search-btn:hover { background: var(--accent); }
  .bl-search-btn:active { transform: translateY(1px); }

  /* ── Sticky category nav ──
     `top` follows --nav-offset which JS toggles between 0 (global nav hidden)
     and the global nav's height (global nav visible). Smooth transitions
     coordinate with the global nav slide. ── */
  .bl-catnav-bar {
    position: sticky; top: var(--nav-offset, 0px); z-index: 30;
    background: color-mix(in oklab, var(--bg) 92%, transparent);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-top: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
    padding: 12px 0;
    transition: top .35s cubic-bezier(.2,.7,.3,1);
  }

  /* ── Blog-only override of the global nav: animate hide/show on scroll.
       The .rfs-nav element is injected by chrome.js and is sticky by default.
       We add `transition: transform` so it slides in/out smoothly when JS
       toggles `.is-hidden`. ── */
  .rfs-nav { transition: transform .35s cubic-bezier(.2,.7,.3,1); }
  .rfs-nav.is-hidden { transform: translateY(-100%); }
  .bl-catnav {
    display: flex; gap: 6px; flex-wrap: nowrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bl-catnav::-webkit-scrollbar { display: none; }
  .bl-catnav a {
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 13.5px; font-weight: 600; color: var(--ink);
    text-decoration: none;
    padding: 8px 14px; border-radius: 99px;
    transition: background .18s, color .18s;
    white-space: nowrap;
  }
  .bl-catnav a:hover { background: color-mix(in oklab, var(--ink) 6%, transparent); }
  .bl-catnav a.is-active {
    background: var(--ink); color: #fff;
  }

  /* ── Featured zone — 1 large + 2 stacked side cards ── */
  .bl-featured-zone {
    display: grid; grid-template-columns: 1.45fr 1fr;
    gap: 24px; align-items: stretch;
  }
  @media (max-width: 980px) { .bl-featured-zone { grid-template-columns: 1fr; } }

  /* Big featured card — cover top, content below */
  .bl-feat-main {
    --fc: var(--accent-blue);
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--hair); border-radius: 24px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .25s cubic-bezier(.2,.7,.3,1), border-color .25s, box-shadow .25s;
  }
  .bl-feat-main:hover {
    transform: translateY(-3px);
    border-color: color-mix(in oklab, var(--fc) 30%, var(--hair));
    box-shadow: 0 32px 60px -30px rgba(28,26,22,0.18);
  }
  .bl-feat-main .bl-feat-cover {
    aspect-ratio: 19 / 10; overflow: hidden;
    background: linear-gradient(135deg, color-mix(in oklab, var(--fc) 22%, #fff), color-mix(in oklab, var(--fc) 8%, #fff));
  }
  .bl-feat-main .bl-feat-cover img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s cubic-bezier(.2,.7,.3,1);
  }
  .bl-feat-main:hover .bl-feat-cover img { transform: scale(1.04); }
  .bl-feat-main .bl-feat-body {
    padding: 30px 32px 32px;
    display: flex; flex-direction: column; gap: 14px; flex: 1;
  }
  .bl-feat-tag {
    display: inline-flex; align-items: center; gap: 6px; width: fit-content;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent);
    background: color-mix(in oklab, var(--accent) 12%, #fff);
    border: 1px solid color-mix(in oklab, var(--accent) 24%, transparent);
    padding: 4px 10px; border-radius: 99px;
  }
  .bl-feat-tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
  .bl-feat-cat {
    display: inline-flex; align-items: center; gap: 6px; width: fit-content;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--fc);
    background: color-mix(in oklab, var(--fc) 10%, #fff);
    border: 1px solid color-mix(in oklab, var(--fc) 22%, transparent);
    padding: 4px 10px; border-radius: 99px;
  }
  .bl-feat-cat::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--fc); }
  .bl-feat-main h3 {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.15;
    letter-spacing: -0.015em; margin: 0; color: var(--ink); text-wrap: balance;
  }
  .bl-feat-main:hover h3 { color: var(--fc); }
  .bl-feat-excerpt {
    font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; text-wrap: pretty;
  }
  .bl-feat-meta {
    display: flex; align-items: center; gap: 10px;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid var(--hair);
    font-size: 11px; font-family: 'IBM Plex Mono', monospace; color: var(--muted); letter-spacing: 0.04em;
  }
  .bl-feat-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--hair); }
  .bl-feat-author { display: flex; align-items: center; gap: 8px; }
  .bl-feat-author-pic {
    width: 24px; height: 24px; border-radius: 50%; overflow: hidden;
    background: color-mix(in oklab, var(--fc) 14%, var(--hair));
  }
  .bl-feat-author-pic img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .bl-feat-author-name {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: 0;
  }

  /* Side stack — 2 smaller cards */
  .bl-feat-side { display: flex; flex-direction: column; gap: 24px; }
  .bl-feat-side-card {
    --fc: var(--accent);
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--hair); border-radius: 18px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .22s cubic-bezier(.2,.7,.3,1), border-color .22s, box-shadow .22s;
  }
  .bl-feat-side-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in oklab, var(--fc) 30%, var(--hair));
    box-shadow: 0 18px 38px -20px rgba(28,26,22,0.14);
  }
  .bl-feat-side-cover {
    aspect-ratio: 19 / 10; overflow: hidden;
    background: linear-gradient(135deg, color-mix(in oklab, var(--fc) 22%, #fff), color-mix(in oklab, var(--fc) 8%, #fff));
  }
  .bl-feat-side-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
  .bl-feat-side-card:hover .bl-feat-side-cover img { transform: scale(1.05); }
  .bl-feat-side-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
  .bl-feat-side-cat {
    display: inline-flex; align-items: center; gap: 5px; width: fit-content;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--fc);
    background: color-mix(in oklab, var(--fc) 10%, #fff);
    border: 1px solid color-mix(in oklab, var(--fc) 22%, transparent);
    padding: 3px 8px; border-radius: 99px;
  }
  .bl-feat-side-cat::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--fc); }
  .bl-feat-side-card h3 {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: 15.5px; line-height: 1.25; letter-spacing: -0.005em;
    margin: 0; color: var(--ink); text-wrap: balance;
  }
  .bl-feat-side-card:hover h3 { color: var(--fc); }
  .bl-feat-side-excerpt {
    font-size: 13.5px; line-height: 1.5; color: var(--muted); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .bl-feat-side-meta {
    font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--muted);
    letter-spacing: 0.04em; margin-top: auto;
  }
  @media (max-width: 620px) {
    .bl-feat-side-card .bl-feat-side-cover { aspect-ratio: 19 / 10; }
  }

  /* ── Category section header — follows the site's standard .lbp-*-head
       split: title-left (1.3fr) + description-right (1fr), aligned to bottom.
       "See all" link lives in the right column under the description. ── */
  .bl-cat-section { padding-top: 70px; padding-bottom: 0; }
  .bl-cat-section.is-hidden { display: none; }
  .bl-cat-head {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px;
    align-items: end;
    padding-bottom: 22px; margin-bottom: 28px;
    border-bottom: 1px solid var(--hair);
  }
  .bl-cat-head-l { min-width: 0; }
  .bl-cat-head-r {
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    padding-bottom: 4px;
  }
  .bl-cat-head-meta {
    display: inline-flex; align-items: center; gap: 8px; width: fit-content;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cat-tone, var(--accent));
    background: color-mix(in oklab, var(--cat-tone, var(--accent)) 10%, #fff);
    border: 1px solid color-mix(in oklab, var(--cat-tone, var(--accent)) 22%, transparent);
    padding: 4px 10px; border-radius: 99px;
    margin-bottom: 12px;
  }
  .bl-cat-head-meta::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cat-tone, var(--accent)); }
  .bl-cat-head-title {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: clamp(26px, 3vw, 36px); line-height: 1.12;
    letter-spacing: -0.015em; margin: 0; color: var(--ink); text-wrap: balance;
  }
  .bl-cat-head-sub {
    font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0;
    text-wrap: pretty;
  }
  .bl-cat-see-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 14px; font-weight: 600; color: var(--cat-tone, var(--accent));
    text-decoration: none; flex-shrink: 0;
    transition: gap .2s;
  }
  @media (max-width: 980px) {
    .bl-cat-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
    .bl-cat-head-r { padding-bottom: 0; }
  }
  .bl-cat-see-all:hover { gap: 10px; }

  /* ── Category grid — 4-up cards ── */
  .bl-cat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    align-items: stretch;
  }
  @media (max-width: 1100px) { .bl-cat-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px)  { .bl-cat-grid { grid-template-columns: 1fr; } }

  .bl-card {
    --cc: var(--accent);
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--hair); border-radius: 18px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .22s cubic-bezier(.2,.7,.3,1), border-color .22s, box-shadow .22s;
  }
  .bl-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in oklab, var(--cc) 30%, var(--hair));
    box-shadow: 0 18px 38px -20px rgba(28,26,22,0.16);
  }
  .bl-card.is-hidden { display: none; }
  .bl-card-cover {
    aspect-ratio: 19 / 10; overflow: hidden; position: relative;
    background: linear-gradient(135deg, color-mix(in oklab, var(--cc) 22%, #fff), color-mix(in oklab, var(--cc) 6%, #fff));
  }
  .bl-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
  .bl-card:hover .bl-card-cover img { transform: scale(1.04); }
  .bl-card-cover-svg {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: color-mix(in oklab, var(--cc) 55%, #000); opacity: 0.35;
  }
  .bl-card-cover-svg svg { width: 50%; height: 50%; }
  .bl-card-body {
    padding: 20px 22px 22px;
    display: flex; flex-direction: column; gap: 10px; flex: 1;
  }
  .bl-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .bl-card-cat {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cc);
    background: color-mix(in oklab, var(--cc) 10%, #fff);
    border: 1px solid color-mix(in oklab, var(--cc) 22%, transparent);
    padding: 3px 8px; border-radius: 99px;
  }
  .bl-card-cat::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--cc); }
  .bl-card-date,
  .bl-card-read {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .bl-card-sep {
    display: inline-block;
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--hair);
    margin: 0 2px;
    flex-shrink: 0;
  }
  /* Date · min cluster sits on the right of the foot, opposite the author. */
  .bl-card-stats {
    display: inline-flex; align-items: center; gap: 4px;
    flex-shrink: 0;
  }
  .bl-card-title {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: 16.5px; line-height: 1.25; letter-spacing: -0.005em;
    margin: 0; color: var(--ink); text-wrap: balance;
  }
  .bl-card:hover .bl-card-title { color: var(--cc); }
  .bl-card-excerpt {
    font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .bl-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: auto; padding-top: 12px;
    border-top: 1px solid var(--hair);
  }
  .bl-card-author { display: flex; align-items: center; gap: 6px; }
  .bl-card-author-pic {
    width: 22px; height: 22px; border-radius: 50%; overflow: hidden;
    background: color-mix(in oklab, var(--cc) 14%, var(--hair));
  }
  .bl-card-author-pic img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .bl-card-author-name {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 11.5px; font-weight: 600; color: var(--ink);
  }


  /* Letter-initial author avatar (for guest writers without a portrait). */
  .bl-card-author-pic.is-init,
  .bl-feat-author-pic.is-init,
  .bl-feat-side-card .bl-feat-author-pic.is-init {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; font-weight: 700;
    color: #fff; background: var(--accent);
  }
  .bl-card-author-pic.is-init::before,
  .bl-feat-author-pic.is-init::before { content: attr(data-initial); }

  /* ── Empty state for whole page when search returns nothing ── */
  .bl-page-empty {
    display: none; text-align: center; padding: 80px 24px;
    background: #fff; border: 1px solid var(--hair); border-radius: 22px;
  }
  .bl-page-empty.is-shown { display: block; }
  .bl-page-empty h3 {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: 24px; margin: 0 0 8px; color: var(--ink);
  }
  .bl-page-empty p { font-size: 14.5px; color: var(--muted); margin: 0; }

  /* ── Newsletter card ── */
  .bl-news {
    --nc: var(--accent);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 36px;
    background: var(--ink); color: var(--bg);
    border-radius: 26px;
    padding: 44px 48px;
    position: relative; overflow: hidden;
  }
  .bl-news::before {
    content: ""; position: absolute; top: -100px; right: -100px;
    width: 320px; height: 320px; border-radius: 99px;
    background: color-mix(in oklab, var(--nc) 55%, transparent);
    filter: blur(60px); pointer-events: none; opacity: 0.5;
  }
  .bl-news > * { position: relative; z-index: 1; }
  .bl-news-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: color-mix(in oklab, var(--nc) 80%, #fff);
    margin-bottom: 14px;
  }
  .bl-news-h {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.15; letter-spacing: -0.015em;
    margin: 0; color: var(--bg); text-wrap: balance;
  }
  .bl-news-p {
    font-size: 15px; line-height: 1.55; color: rgba(251,247,240,0.72);
    margin: 14px 0 0; max-width: 420px; text-wrap: pretty;
  }
  .bl-news-form { display: flex; flex-direction: column; gap: 12px; align-self: center; }
  .bl-news-row {
    display: flex; gap: 8px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18); border-radius: 99px;
    padding: 6px 6px 6px 20px; transition: border-color .2s;
  }
  .bl-news-row:focus-within { border-color: var(--bg); }
  .bl-news-row input {
    flex: 1; border: 0; outline: 0; background: transparent;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 14.5px; color: var(--bg); padding: 10px 0; min-width: 0;
  }
  .bl-news-row input::placeholder { color: rgba(255,255,255,0.55); }
  .bl-news-row button {
    background: var(--nc); color: #fff; border: 0; border-radius: 99px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600; font-size: 13.5px; padding: 10px 20px;
    cursor: pointer; transition: background .18s, color .18s;
  }
  .bl-news-row button:hover { background: #fff; color: var(--nc); }
  .bl-news-footnote {
    font-size: 12px; color: rgba(251,247,240,0.55); margin: 0;
  }
  @media (max-width: 820px) { .bl-news { grid-template-columns: 1fr; padding: 34px 28px; gap: 24px; } }

  /* ── Newsletter heading split + email capture (sits inside the dark
       .lbp-proc-cta shell). Title-left + description-right matches the
       site's .lbp-*-head section header convention. ── */
  .bl-news-head {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px;
    align-items: end; margin-bottom: 32px;
  }
  .bl-news-head-r { padding-bottom: 6px; }
  .bl-news-cap { display: flex; flex-direction: column; gap: 10px; max-width: 560px; }
  .bl-news-cap-row {
    display: flex; align-items: center; gap: 6px;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 6px 6px 6px 18px;
    transition: border-color .2s, box-shadow .2s;
  }
  .bl-news-cap-row:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
  }
  .bl-news-cap-row input {
    flex: 1; min-width: 0;
    background: transparent; border: 0; outline: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 14.5px; color: var(--ink);
    padding: 10px 4px;
  }
  .bl-news-cap-row input::placeholder { color: color-mix(in oklab, var(--ink) 45%, transparent); }
  .bl-news-cap-row button {
    flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600; font-size: 14px;
    color: #fff; background: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 999px;
    padding: 10px 22px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
  }
  .bl-news-cap-row button:hover { background: #fff; color: var(--accent); border-color: #fff; transform: translateY(-1px); }
  .bl-news-cap-footnote {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.04em;
    color: rgba(251,247,240,0.55); margin: 0;
  }
  .lb-sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  @media (max-width: 820px) {
    .bl-news-head { grid-template-columns: 1fr; gap: 16px; }
    .bl-news-head-r { padding-bottom: 0; }
    .bl-news-cap { max-width: none; }
  }

  /* ── eBooks section — free PDFs pulled from rocketfarmstudios.com/blog/.
       3-up grid of vertical cards: cover (portrait), eyebrow pill, title, 1-line
       blurb, download CTA. Mirrors .bl-card vocabulary so it feels native. ── */
  .bl-eb-head {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px;
    align-items: end;
    padding-bottom: 22px; margin-bottom: 28px;
    border-bottom: 1px solid var(--hair);
  }
  .bl-eb-head-l { min-width: 0; }
  .bl-eb-head-r { padding-bottom: 4px; }
  @media (max-width: 980px) {
    .bl-eb-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
    .bl-eb-head-r { padding-bottom: 0; }
  }
  .bl-eb-head-meta {
    display: inline-flex; align-items: center; gap: 8px; width: fit-content;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent);
    background: color-mix(in oklab, var(--accent) 10%, #fff);
    border: 1px solid color-mix(in oklab, var(--accent) 22%, transparent);
    padding: 4px 10px; border-radius: 99px;
    margin-bottom: 12px;
  }
  .bl-eb-head-meta::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .bl-eb-head-title {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: clamp(26px, 3vw, 36px); line-height: 1.12;
    letter-spacing: -0.015em; margin: 0; color: var(--ink); text-wrap: balance;
  }
  .bl-eb-head-title em { font-style: normal; color: var(--accent); }
  .bl-eb-head-sub {
    font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0;
    text-wrap: pretty;
  }
  .bl-eb-see-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 14px; font-weight: 600; color: var(--accent);
    text-decoration: none; flex-shrink: 0;
    transition: gap .2s;
  }
  .bl-eb-see-all:hover { gap: 10px; }
  .bl-eb-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  @media (max-width: 1100px) { .bl-eb-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px)  { .bl-eb-grid { grid-template-columns: 1fr; } }

  .bl-eb-card {
    --cc: var(--accent);
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--hair); border-radius: 22px;
    overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .25s cubic-bezier(.2,.7,.3,1), border-color .25s, box-shadow .25s;
  }
  .bl-eb-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in oklab, var(--cc) 30%, var(--hair));
    box-shadow: 0 22px 44px -22px rgba(28,26,22,0.16);
  }
  .bl-eb-cover {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, color-mix(in oklab, var(--cc) 22%, #fff), color-mix(in oklab, var(--cc) 6%, #fff));
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    padding: 22px;
  }
  .bl-eb-cover img {
    max-width: 100%; max-height: 100%;
    width: auto; height: 100%;
    object-fit: contain; display: block;
    filter: drop-shadow(0 14px 28px rgba(28,26,22,0.18));
    transition: transform .5s cubic-bezier(.2,.7,.3,1);
  }
  .bl-eb-card:hover .bl-eb-cover img { transform: translateY(-3px) scale(1.02); }
  .bl-eb-body {
    padding: 22px 24px 24px;
    display: flex; flex-direction: column; gap: 10px; flex: 1;
  }
  .bl-eb-pill {
    display: inline-flex; align-items: center; gap: 6px; width: fit-content;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cc);
    background: color-mix(in oklab, var(--cc) 10%, #fff);
    border: 1px solid color-mix(in oklab, var(--cc) 22%, transparent);
    padding: 3px 9px; border-radius: 99px;
  }
  .bl-eb-pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cc); }
  .bl-eb-title {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 600; font-size: 19px; line-height: 1.2; letter-spacing: -0.015em;
    margin: 0; color: var(--ink); text-wrap: balance;
  }
  .bl-eb-card:hover .bl-eb-title { color: var(--cc); }
  .bl-eb-desc {
    font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .bl-eb-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600; font-size: 13.5px; color: var(--cc);
    margin-top: 4px;
    transition: gap .2s;
  }
  .bl-eb-card:hover .bl-eb-cta { gap: 10px; }

/* ── Category-hub pagination (.bc-pagination) — ported from category page design ── */
.bc-pagination { display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; margin-top:48px; }
.bc-pagination a, .bc-pagination span {
  font-family:'Plus Jakarta Sans',system-ui,sans-serif; font-size:14px; font-weight:600;
  min-width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center;
  padding:0 14px; border:1.5px solid var(--hair); border-radius:12px; color:var(--ink);
  text-decoration:none; transition:border-color .18s, background .18s, color .18s;
}
.bc-pagination a:hover { border-color:var(--ink); background:var(--bg); }
.bc-pagination a.is-active { background:var(--ink); border-color:var(--ink); color:#fff; }
.bc-pagination span.bc-page-dots { border:0; color:var(--muted); cursor:default; }
.bc-pagination a.bc-page-nav { gap:6px; padding:0 18px; }
.bc-pagination a.bc-page-nav.is-disabled { opacity:0.4; cursor:not-allowed; pointer-events:none; }
