/* =================================================================
   /briefing/ — The AI Briefing newsletter landing page
   Conversion-optimized, mobile-first. One goal: email subscription.

   CRO structure encoded here:
   - Above-the-fold form (fits a 375x667 viewport, no scroll to CTA)
   - Single input field, 48px tap targets, 16px input font (no iOS zoom)
   - Nav/footer distraction stripped back
   - CTA repeated at every major scroll fold + sticky mobile bar
   ================================================================= */

:root {
    --bx-ink: #234860;
    --bx-ink-deep: #16303f;
    --bx-ink-mid: #1b3a4e;
    --bx-text: #4A5568;
    --bx-muted: #94A3B8;
    --bx-border: #E8EDF2;
    --bx-surface: #FFFFFF;
    --bx-surface-alt: #F4F8FB;
    --bx-accent: #EF6451;
    --bx-accent-ink: #d94e3d;
    --bx-ok: #15803d;
    --bx-err: #b91c1c;
}

/* ---- Page integration ---------------------------------------------------- */
body.page-briefing .page-article-wrapper { padding: 0; background: var(--bx-surface); }
body.page-briefing .page-article-container {
    display: block !important;
    max-width: none !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
}
body.page-briefing .page-article-sidebar { display: none !important; }
body.page-briefing .page-article-main { min-width: 0; }
body.page-briefing .page-article-main article {
    background: transparent !important; box-shadow: none !important;
    padding: 0 !important; margin: 0 !important; border-radius: 0 !important;
    max-width: none !important;
}
body.page-briefing .page-content { color: var(--bx-text); font-size: 16px; line-height: 1.7; }
body.page-briefing .page-content > h1:first-child { display: none; }
body.page-briefing .page-content h1,
body.page-briefing .page-content h2,
body.page-briefing .page-content h3 {
    font-family: var(--font-primary); color: var(--bx-ink);
    font-weight: 700; margin: 0; text-align: left;
}
body.page-briefing .page-content p { margin: 0 0 1rem; }
body.page-briefing .page-content ul,
body.page-briefing .page-content ol { margin: 0; padding: 0; list-style: none; }
body.page-briefing .page-content a { color: var(--bx-accent); text-decoration: none; }
body.page-briefing .page-content button,
body.page-briefing .page-content input { font-family: inherit; }

/* CRO: strip competing navigation. One page, one decision.
   Logo stays clickable so the visitor is never trapped. */
body.page-briefing .nav-menu { display: none !important; }
body.page-briefing .top-bar { display: none !important; }
body.page-briefing .main-header { border-bottom: 1px solid var(--bx-border); }
body.page-briefing .main-footer .footer-content { display: none; }

/* ---- Layout primitives ---------------------------------------------------- */
.bx-wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
.bx-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 760px) {
    .bx-wrap, .bx-narrow { padding: 0 2rem; }
}

body.page-briefing .page-content > section {
    width: 100vw; position: relative; left: 50%; right: 50%;
    margin-left: -50vw; margin-right: -50vw;
}

.bx-eyebrow {
    font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
    font-weight: 600; color: var(--bx-accent); margin: 0 0 .75rem;
}
.bx-h2 {
    font-size: clamp(1.5rem, 4.5vw, 2.15rem);
    line-height: 1.2; letter-spacing: -.01em; margin: 0 0 1rem !important;
}
.bx-lead { font-size: 1.05rem; line-height: 1.65; color: var(--bx-text); margin: 0 0 1.75rem !important; }

/* ---- HERO: everything that matters, above the fold ------------------------ */
.bx-hero {
    background:
        radial-gradient(900px 420px at 85% -10%, rgba(239,100,81,.20), transparent 65%),
        linear-gradient(170deg, var(--bx-ink-deep) 0%, var(--bx-ink-mid) 100%);
    color: #fff;
    padding: 2rem 0 2.25rem;
}
.bx-hero .bx-eyebrow { color: #FFB4A6; margin-bottom: .6rem; }

/* The h1 is the masthead — it names the publication. The line that has to do
   the selling is .bx-hook right below it, which carries the display size. */
.bx-hero h1.bx-brand {
    color: #fff !important;
    font-size: clamp(1rem, 3.4vw, 1.2rem);
    font-weight: 600; line-height: 1.3; letter-spacing: .01em;
    margin: 0 0 .7rem !important;
    padding-bottom: .7rem;
    border-bottom: 1px solid rgba(255,255,255,.18);
    display: inline-block;
}
.bx-hook {
    color: #fff !important;
    font-family: var(--font-primary); font-weight: 700;
    font-size: clamp(1.72rem, 7.2vw, 3.1rem);
    line-height: 1.12; letter-spacing: -.02em;
    margin: 0 0 .75rem !important;
}
.bx-hook em { font-style: normal; color: var(--bx-accent); }
.bx-hero-sub {
    color: #C9DAE6 !important; font-size: 1rem; line-height: 1.55;
    margin: 0 0 1.25rem !important; max-width: 46ch;
}
/* Mobile order: copy → form → facts.
   The form must clear the fold on a 375x667 screen, so the facts strip moves
   below it; desktop puts it back into the left column via grid areas. */
.bx-hero-grid { display: block; }
@media (min-width: 900px) {
    .bx-hero { padding: 3.5rem 0 3.25rem; }
    .bx-hero-grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        grid-template-areas: "copy card" "facts card";
        grid-template-rows: auto auto;
        column-gap: 3rem; row-gap: 0;
        align-items: center;
    }
    .bx-hero-grid > div:first-child { grid-area: copy; align-self: end; }
    .bx-hero-grid > .bx-card { grid-area: card; }
    .bx-hero-grid > .bx-facts { grid-area: facts; align-self: start; margin-top: 1.25rem !important; }
    .bx-hero-sub { font-size: 1.12rem; margin-bottom: 0 !important; }
}

/* Facts strip — time cost, frequency, price: the three instant questions */
.bx-facts {
    display: flex; flex-wrap: wrap; gap: .45rem;
    list-style: none; margin: 1.1rem 0 0 !important; padding: 0;
}
.bx-facts li {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem; font-weight: 500; color: #DCE9F2;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px; padding: .35rem .7rem;
}
.bx-facts svg { width: 14px; height: 14px; stroke: var(--bx-accent); fill: none; stroke-width: 2.2; }

/* ---- The signup form (used 3x on the page) -------------------------------- */
.bx-card {
    background: #fff; border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 18px 45px rgba(12,32,44,.28);
}
.bx-card--plain { box-shadow: 0 6px 24px rgba(35,72,96,.10); border: 1px solid var(--bx-border); }
.bx-card h2, .bx-card h3 { font-size: 1.1rem; margin: 0 0 .35rem !important; }
.bx-card .bx-card-sub { font-size: .92rem; color: var(--bx-text); margin: 0 0 .9rem !important; }
@media (min-width: 760px) { .bx-card { padding: 1.6rem; } }

.bx-form { margin: 0; }
.bx-form__row { display: flex; flex-direction: column; gap: .55rem; }
@media (min-width: 480px) {
    .bx-form__row { flex-direction: row; }
    .bx-form__row input[type="email"] { flex: 1 1 auto; min-width: 0; }
}
.bx-form input[type="email"] {
    width: 100%;
    /* 16px minimum — anything smaller makes iOS Safari zoom on focus */
    font-size: 16px;
    padding: .85rem 1rem;
    min-height: 52px;
    border: 1.5px solid #CBD8E2; border-radius: 10px;
    color: var(--bx-ink); background: #fff;
    -webkit-appearance: none; appearance: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.bx-form input[type="email"]::placeholder { color: #9AAEBD; }
.bx-form input[type="email"]:focus {
    outline: none; border-color: var(--bx-accent);
    box-shadow: 0 0 0 3px rgba(239,100,81,.18);
}
.bx-form input[type="email"][aria-invalid="true"] { border-color: var(--bx-err); }

.bx-form button[type="submit"] {
    font-size: 1rem; font-weight: 600;
    min-height: 52px; padding: .85rem 1.5rem;
    border: 0; border-radius: 10px; cursor: pointer;
    color: #fff; background: var(--bx-accent);
    white-space: nowrap;
    transition: background .15s ease, transform .05s ease;
}
.bx-form button[type="submit"]:hover { background: var(--bx-accent-ink); }
.bx-form button[type="submit"]:active { transform: translateY(1px); }
.bx-form button[type="submit"]:disabled { opacity: .65; cursor: not-allowed; }

.bx-consent {
    display: flex; align-items: flex-start; gap: .55rem;
    margin: .8rem 0 0; font-size: .78rem; line-height: 1.45; color: #64748B;
}
.bx-consent input[type="checkbox"] {
    flex: 0 0 auto; width: 18px; height: 18px; margin: .1rem 0 0;
    accent-color: var(--bx-accent);
}
.bx-consent a { color: #64748B !important; text-decoration: underline; }

/* Risk reversal, directly under the button where the hesitation happens */
.bx-reassure {
    display: flex; flex-wrap: wrap; gap: .25rem .9rem;
    margin: .75rem 0 0; padding: 0; list-style: none;
    font-size: .78rem; color: #64748B;
}
.bx-reassure li { display: inline-flex; align-items: center; gap: .3rem; }
.bx-reassure svg { width: 13px; height: 13px; stroke: var(--bx-ok); fill: none; stroke-width: 2.5; }

.bx-form__msg { margin: .75rem 0 0; font-size: .88rem; font-weight: 500; min-height: 1px; }
.bx-form__msg.is-error { color: var(--bx-err); }
.bx-form__msg.is-success { color: var(--bx-ok); }
.bx-form.is-done .bx-form__row,
.bx-form.is-done .bx-consent,
.bx-form.is-done .bx-reassure { display: none; }

/* ---- Proof strip ---------------------------------------------------------- */
.bx-proof { background: var(--bx-surface); padding: 1.6rem 0 1.4rem; border-bottom: 1px solid var(--bx-border); }
.bx-proof-label { text-align: center; font-size: .78rem; text-transform: uppercase;
    letter-spacing: .1em; color: var(--bx-muted); margin: 0 0 1rem !important; }
.bx-logos {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: .4rem 1rem; list-style: none; margin: 0 !important; padding: 0;
}
@media (min-width: 760px) { .bx-logos { gap: .75rem 2rem; } }
/* Assets are pre-normalised by scripts/make_logo_strip.py into a uniform
   360x120 frame with the optical weight already balanced, so one height rule
   covers every mark. Shown in colour: several of these marks are solid-colour
   app icons that turn into grey slabs under a grayscale filter. */
.bx-logos img {
    height: 30px; width: auto; opacity: .9;
}
@media (min-width: 480px) { .bx-logos img { height: 36px; } }
@media (min-width: 760px) { .bx-logos img { height: 46px; } }

/* ---- Generic sections ----------------------------------------------------- */
.bx-section { padding: 3rem 0; background: var(--bx-surface); }
.bx-section--alt { background: var(--bx-surface-alt); }
.bx-section--dark { background: var(--bx-ink-deep); }
.bx-section--dark h2, .bx-section--dark h3 { color: #fff !important; }
.bx-section--dark p { color: #C9DAE6; }
@media (min-width: 760px) { .bx-section { padding: 4.25rem 0; } }

/* ---- "What's inside" value bullets ---------------------------------------- */
.bx-value { display: grid; gap: .9rem; margin: 0 !important; padding: 0; }
@media (min-width: 760px) { .bx-value { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; } }
.bx-value li {
    display: grid; grid-template-columns: 34px 1fr; gap: .85rem;
    background: #fff; border: 1px solid var(--bx-border);
    border-radius: 12px; padding: 1rem 1.1rem;
}
.bx-value .bx-num {
    width: 30px; height: 30px; border-radius: 8px;
    display: grid; place-items: center;
    background: rgba(239,100,81,.12); color: var(--bx-accent);
    font-size: .82rem; font-weight: 700;
}
.bx-value strong { display: block; color: var(--bx-ink); font-size: 1rem; margin-bottom: .2rem; }
.bx-value span.bx-vtext { font-size: .93rem; line-height: 1.55; color: var(--bx-text); }

/* ---- Sample issue preview ------------------------------------------------- */
.bx-sample {
    background: #fff; border: 1px solid var(--bx-border); border-radius: 14px;
    overflow: hidden; box-shadow: 0 10px 32px rgba(35,72,96,.08);
}
.bx-sample__bar {
    display: flex; align-items: center; gap: .5rem;
    padding: .7rem 1rem; background: var(--bx-surface-alt);
    border-bottom: 1px solid var(--bx-border);
    font-size: .78rem; color: var(--bx-muted);
}
.bx-sample__dot { width: 9px; height: 9px; border-radius: 50%; background: #CBD8E2; }
.bx-sample__body { padding: 1.1rem 1.15rem 1.35rem; }
.bx-sample__subject { font-size: .95rem; font-weight: 700; color: var(--bx-ink); margin: 0 0 1rem !important; }
.bx-sample__body ol { counter-reset: bx; margin: 0 !important; padding: 0; }
.bx-sample__body ol li {
    padding: .8rem 0; border-top: 1px dashed var(--bx-border);
}
.bx-sample__body ol li:first-child { border-top: 0; padding-top: 0; }
.bx-sample__body ol li strong { display: block; color: var(--bx-ink); font-size: .92rem; margin-bottom: .15rem; }
.bx-sample__body ol li span { font-size: .88rem; color: var(--bx-text); line-height: 1.55; }
.bx-sample__foot {
    font-size: .8rem; color: var(--bx-muted); margin: 1rem 0 0 !important;
    padding-top: .85rem; border-top: 1px solid var(--bx-border);
}

/* ---- For / not for -------------------------------------------------------- */
.bx-fit { display: grid; gap: 1rem; margin: 0 !important; }
@media (min-width: 760px) { .bx-fit { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.bx-fit__col { background: #fff; border: 1px solid var(--bx-border); border-radius: 12px; padding: 1.25rem; }
.bx-fit__col h3 { font-size: 1rem; margin: 0 0 .85rem !important; }
.bx-fit__col ul { margin: 0 !important; padding: 0; list-style: none; }
.bx-fit__col li {
    display: grid; grid-template-columns: 18px 1fr; gap: .6rem;
    font-size: .93rem; line-height: 1.5; margin-bottom: .6rem;
}
.bx-fit__col li:last-child { margin-bottom: 0; }
.bx-fit__col svg { width: 16px; height: 16px; margin-top: .22rem; fill: none; stroke-width: 2.5; }
.bx-fit--yes svg { stroke: var(--bx-ok); }
.bx-fit--no svg { stroke: var(--bx-muted); }

/* ---- Author --------------------------------------------------------------- */
.bx-author { display: grid; gap: 1.25rem; align-items: center; }
@media (min-width: 760px) { .bx-author { grid-template-columns: 160px 1fr; gap: 2rem; } }
.bx-author img {
    width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(239,100,81,.35);
}
@media (min-width: 760px) { .bx-author img { width: 160px; height: 160px; } }
.bx-author-stats {
    display: flex; flex-wrap: wrap; gap: .5rem .75rem;
    list-style: none; margin: 1rem 0 0 !important; padding: 0;
}
.bx-author-stats li {
    font-size: .8rem; color: #DCE9F2;
    background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px; padding: .35rem .65rem;
}

/* ---- FAQ ------------------------------------------------------------------ */
.bx-faq { margin: 0 !important; padding: 0; max-width: 720px; }
.bx-faq details {
    border-bottom: 1px solid var(--bx-border);
}
.bx-faq summary {
    cursor: pointer; list-style: none;
    padding: 1rem 2rem 1rem 0; position: relative;
    font-weight: 600; font-size: .98rem; color: var(--bx-ink);
    min-height: 48px; display: flex; align-items: center;
}
.bx-faq summary::-webkit-details-marker { display: none; }
.bx-faq summary::after {
    content: ""; position: absolute; right: .35rem; top: 50%;
    width: 9px; height: 9px; margin-top: -6px;
    border-right: 2px solid var(--bx-accent); border-bottom: 2px solid var(--bx-accent);
    transform: rotate(45deg); transition: transform .2s ease;
}
.bx-faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.bx-faq details p { font-size: .93rem; line-height: 1.65; margin: 0 0 1rem !important; padding-right: 1rem; }

/* ---- Final CTA ------------------------------------------------------------ */
.bx-final { background: linear-gradient(170deg, var(--bx-ink-mid) 0%, var(--bx-ink-deep) 100%); padding: 3rem 0; }
.bx-final h2 { color: #fff !important; text-align: center; }
.bx-final .bx-lead { color: #C9DAE6 !important; text-align: center; margin-left: auto !important; margin-right: auto !important; max-width: 46ch; }
.bx-final .bx-card { max-width: 520px; margin: 0 auto; }
@media (min-width: 760px) { .bx-final { padding: 4.25rem 0; } }

/* ---- Sticky mobile CTA ----------------------------------------------------
   Appears once the hero form has scrolled out of view, so there is always a
   CTA in the first viewport on mobile. Desktop keeps the in-page CTAs only. */
.bx-sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(22,48,63,.97);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
    display: flex; align-items: center; justify-content: space-between; gap: .85rem;
    transform: translateY(120%); transition: transform .25s ease;
}
.bx-sticky.is-visible { transform: translateY(0); }
.bx-sticky span { color: #DCE9F2; font-size: .84rem; line-height: 1.3; font-weight: 500; }
.bx-sticky a {
    flex: 0 0 auto; background: var(--bx-accent); color: #fff !important;
    font-size: .9rem; font-weight: 600; text-decoration: none;
    padding: .7rem 1.05rem; border-radius: 9px; min-height: 44px;
    display: inline-flex; align-items: center;
}
@media (min-width: 900px) { .bx-sticky { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
    .bx-sticky { transition: none; }
}


/* ---- Short viewports (iPhone SE and friends) ------------------------------
   The primary CTA must stay in the first viewport. On screens under ~700px
   tall the hero sheds vertical chrome instead of pushing the button down. */
@media (max-width: 899px) and (max-height: 740px) {
    .bx-hero { padding: 1.1rem 0 1.5rem; }
    .bx-hero .bx-eyebrow { margin-bottom: .4rem; font-size: .68rem; }
    .bx-hero h1.bx-brand { font-size: .95rem; margin-bottom: .5rem !important; padding-bottom: .5rem; }
    .bx-hook { font-size: clamp(1.5rem, 6.2vw, 1.95rem); margin-bottom: .55rem !important; }
    .bx-hero-sub { font-size: .93rem; line-height: 1.5; margin-bottom: .9rem !important; }
    .bx-card { padding: 1rem; }
    .bx-card .bx-card-sub { display: none; }
    .bx-consent { margin-top: .6rem; }
    .bx-reassure { margin-top: .55rem; }
}

/* ---- Mid-page CTA band ----------------------------------------------------
   Placed straight after the sample issue: the point of peak intent, where the
   visitor has just seen exactly what they'd receive. */
.bx-cta-band {
    background: var(--bx-surface);
    border-top: 1px solid var(--bx-border);
    border-bottom: 1px solid var(--bx-border);
    padding: 2.5rem 0;
}
.bx-cta-band .bx-h2 { text-align: center; font-size: clamp(1.35rem, 4vw, 1.8rem); }
.bx-cta-band .bx-form { max-width: 540px; margin: 0 auto; }
.bx-cta-band .bx-reassure { justify-content: center; }
@media (min-width: 760px) { .bx-cta-band { padding: 3.25rem 0; } }

/* ---- Stats band -----------------------------------------------------------
   The hardest proof on the page: a real, checkable number. Sits directly
   under the hero so it is the first thing after the CTA. */
.bx-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: .5rem; list-style: none; margin: 0 0 1.9rem !important; padding: 0;
    text-align: center;
}
.bx-stats li { display: flex; flex-direction: column; gap: .15rem; position: relative; }
.bx-stats li + li::before {
    content: ""; position: absolute; left: 0; top: 12%; bottom: 12%;
    width: 1px; background: var(--bx-border);
}
.bx-stats strong {
    font-family: var(--font-primary);
    font-size: clamp(1.45rem, 6vw, 2.4rem); font-weight: 700;
    color: var(--bx-ink); line-height: 1.1; letter-spacing: -.02em;
}
.bx-stats span { font-size: .74rem; line-height: 1.35; color: var(--bx-muted); padding: 0 .35rem; }
@media (min-width: 760px) {
    .bx-stats { gap: 1rem; margin-bottom: 2.4rem !important; }
    .bx-stats span { font-size: .84rem; }
}

/* ---- Method list (dark band) ---------------------------------------------- */
.bx-lead--onDark { color: #C9DAE6 !important; }
.bx-method { display: grid; gap: 1.1rem; margin: 0 !important; padding: 0; list-style: none; }
@media (min-width: 860px) { .bx-method { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.bx-method li {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px; padding: 1.15rem 1.2rem;
}
.bx-method__icon {
    display: grid; place-items: center;
    width: 34px; height: 34px; border-radius: 9px;
    background: rgba(239,100,81,.18); margin-bottom: .75rem;
}
.bx-method__icon svg { width: 19px; height: 19px; stroke: var(--bx-accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bx-method strong { display: block; color: #fff; font-size: 1rem; margin-bottom: .35rem; }
.bx-method li > span:last-child { display: block; font-size: .92rem; line-height: 1.55; color: #C9DAE6; }

/* ---- Centering fix --------------------------------------------------------
   `body.page-briefing .page-content h2` (0,2,2) was out-specifying the
   `.bx-final h2` / `.bx-cta-band .bx-h2` centering rules (0,1,1), so both CTA
   headings were rendering left-aligned against their centered forms. */
body.page-briefing .page-content .bx-final h2,
body.page-briefing .page-content .bx-cta-band h2 { text-align: center; }

/* ---- Forum bonus callout --------------------------------------------------
   A second, non-email benefit: the reader can ask back and get an answer. */
.bx-bonus {
    display: grid; grid-template-columns: 44px 1fr; gap: 1rem;
    margin-top: 1.5rem; padding: 1.25rem;
    background: linear-gradient(135deg, rgba(239,100,81,.08), rgba(239,100,81,.03));
    border: 1px solid rgba(239,100,81,.28);
    border-radius: 12px;
}
.bx-bonus__icon {
    display: grid; place-items: center;
    width: 44px; height: 44px; border-radius: 11px;
    background: rgba(239,100,81,.15);
}
.bx-bonus__icon svg { width: 23px; height: 23px; stroke: var(--bx-accent); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.bx-bonus__body strong { color: var(--bx-ink); font-size: 1rem; }
.bx-bonus__body > strong { display: block; margin-bottom: .3rem; }
.bx-bonus__body p { font-size: .95rem; line-height: 1.6; margin: 0 0 .75rem !important; }
body.page-briefing .page-content a.bx-bonus__link {
    display: inline-flex; align-items: center; min-height: 44px;
    font-weight: 600; font-size: .95rem; color: var(--bx-accent);
}
body.page-briefing .page-content a.bx-bonus__link:hover { color: var(--bx-accent-ink); text-decoration: underline; }
@media (min-width: 760px) { .bx-bonus { padding: 1.5rem 1.6rem; margin-top: 1.75rem; } }

/* Count comes from the "Companies I've Advised & Worked With" table on
   /about/: 144 companies, 6 of them shown above. */
.bx-logos-more {
    text-align: center;
    font-size: .8rem;
    color: var(--bx-muted);
    margin: .9rem 0 0 !important;
}
@media (min-width: 760px) { .bx-logos-more { font-size: .85rem; margin-top: 1.1rem !important; } }
