/* ═══════════════════════════════════════════════════════════════════════
   crashgames.guide — /games/ catalog hub bespoke styles
   Loaded conditionally only on the games-catalog page from _layout.php.

   Visual identity: dashboard / database-feel.
   - Border-driven hierarchy (vs home.css's gradient-driven hero)
   - Mono font on counts and numbers
   - Functional chips and tiles, not flashy hero cards
   - Charts are first-class visual elements
   ═══════════════════════════════════════════════════════════════════════ */
.page--games-catalog .main { padding-top: 0; }
.page--games-catalog main > .hero-games:first-child,
.page--games-catalog main > section:first-child { margin-top: 0; }


/* ── 1. CINEMATIC HERO + FILTER CHIPS ─────────────────────────────── */
.page--games-catalog main > .hero-catalog:first-child { margin-top: 0; }

.hero-catalog {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 64px) 0 clamp(28px, 4vw, 48px);
    margin-top: 0;
    background:
        radial-gradient(70% 80% at 50% 0%, rgba(6, 182, 212, 0.08), transparent 70%),
        radial-gradient(50% 60% at 85% 100%, rgba(79, 70, 229, 0.06), transparent 70%),
        var(--bg);
    border-bottom: 1px solid var(--border);
}

/* Decorative RTP-percentage ribbon scrolling diagonally behind hero */
.hero-catalog__rtp-ticker {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    padding: 0 var(--sp-4);
    pointer-events: none;
    user-select: none;
    font-family: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: rgba(6, 182, 212, 0.06);
    letter-spacing: -0.02em;
    overflow: hidden;
    white-space: nowrap;
    z-index: 0;
}
.hero-catalog__rtp-ticker span {
    flex-shrink: 0;
    transform: rotate(-6deg);
}
.hero-catalog__rtp-ticker-low {
    color: rgba(249, 115, 22, 0.06);
}

.hero-catalog__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
}
.hero-catalog__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    margin-bottom: var(--sp-2);
}
.hero-catalog__title {
    margin: 0;
    font-size: clamp(1.875rem, 4.5vw + 0.5rem, 3.5rem);
    font-weight: var(--fw-black);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text);
    max-width: 920px;
}
.hero-catalog__lead {
    margin: 0;
    max-width: 720px;
    font-size: var(--fs-md);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

/* Topline stats inside hero — 3 big numbers with separators */
.hero-catalog__topline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(16px, 3vw, 32px);
    padding: var(--sp-4) clamp(16px, 3vw, 32px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    margin-top: var(--sp-2);
}
.hero-catalog__topline-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 72px;
}
.hero-catalog__topline-value {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: var(--fw-black);
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.hero-catalog__topline-label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: var(--fw-medium);
}
.hero-catalog__topline-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
}
@media (max-width: 540px) {
    .hero-catalog__topline-sep { display: none; }
    .hero-catalog__topline { gap: var(--sp-3); }
    .hero-catalog__topline-stat {
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
    }
    .hero-catalog__topline-value { font-size: 1.5rem; }
}

/* Filter chips wrapper inside hero */
.hero-catalog__filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    width: 100%;
}
.hero-catalog__filters-label {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2);
    max-width: 720px;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    color: var(--text);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    text-decoration: none;
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.filter-chip:hover {
    border-color: var(--primary);
    background: var(--primary-50);
    color: var(--primary-dark);
    transform: translateY(-1px);
}
.filter-chip__label { white-space: nowrap; }
.filter-chip__count {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 2px 7px;
    border-radius: var(--r-sm);
    line-height: 1.4;
}
.filter-chip:hover .filter-chip__count {
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-dark);
}

.hero-catalog__meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-2);
    padding: 6px 14px;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    margin-top: var(--sp-2);
}
.hero-catalog__meta-sep { opacity: 0.5; }

@media (max-width: 540px) {
    .hero-catalog__rtp-ticker { font-size: 2.25rem; }
}

/* ── 2. HERO STATS — uses shared .stat-tiles--home from home.css ─── */
/* (no per-hub overrides; consistency rule per HUB-DESIGN-RULES.md) */

/* ── 3. RTP DISTRIBUTION HORIZONTAL BAR CHART ──────────────────────── */
.rtp-bands-chart {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(20px, 3vw, 32px);
    box-shadow: var(--shadow-sm);
}
.rtp-band {
    display: grid;
    grid-template-columns: 130px 1fr;
    grid-template-rows: auto auto;
    gap: 4px var(--sp-4);
    align-items: center;
}
@media (min-width: 768px) {
    .rtp-band {
        grid-template-columns: 200px 1fr;
        gap: 4px var(--sp-5);
    }
}
.rtp-band__label {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text);
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
.rtp-band__bar-wrap {
    background: var(--bg-alt);
    border-radius: var(--r-sm);
    height: 24px;
    overflow: hidden;
    position: relative;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}
.rtp-band__bar {
    height: 100%;
    background: var(--grad-primary);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    min-width: 36px;
    transition: width 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.rtp-band__count {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: #FFFFFF;
    line-height: 1;
}
.rtp-band__note {
    grid-column: 1 / -1;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.45;
    padding-left: 0;
}
@media (min-width: 768px) {
    .rtp-band__note {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        padding-left: 0;
    }
}
/* First band (99%+) gets accent treatment */
.rtp-band:first-child .rtp-band__bar { background: var(--grad-growth); }

/* ── 4. MOST-PLAYED TRIO ──────────────────────────────────────────── */
.most-played {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}
@media (min-width: 768px) {
    .most-played { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}
.played-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5) var(--sp-5) var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    box-shadow: var(--shadow-xs);
    transition: border-color var(--t-fast), transform var(--t-fast);
}
.played-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.played-card__rank {
    position: absolute;
    top: -14px;
    left: var(--sp-5);
    width: 32px;
    height: 32px;
    border-radius: var(--r-full);
    background: var(--grad-primary);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.played-card__title {
    margin: 0;
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
}
.played-card__title a { color: var(--text); }
.played-card__title a:hover { color: var(--primary); }
.played-card__meta {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.played-card__why {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: var(--lh-relaxed);
}

/* ── HUB SECTION CARD — unified wrapper for body H2 sections ─────── */
.hub-body .hub-section-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(20px, 3vw, 32px);
    margin: var(--sp-6) 0;
    box-shadow: var(--shadow-sm);
}
.hub-body .hub-section-card > h2:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    margin-bottom: var(--sp-3);
}
.hub-body .hub-section-card > p { margin-bottom: var(--sp-3); }
.hub-body .hub-section-card > p:last-child { margin-bottom: 0; }
.hub-body .hub-section-card .hub-compare-table { margin: var(--sp-4) 0 0; }

/* Variant tints */
.hub-body .hub-section-card--purpose {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
    border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
}
.hub-body .hub-section-card--purpose > h2 { color: var(--primary-dark); }
.hub-body .hub-section-card--rtp-table {
    background: var(--surface);
}
.hub-body .hub-section-card--picks {
    background: var(--bg-alt);
}
.hub-body .hub-section-card--picks .review-callout {
    background: var(--surface);
}

/* ── 5. LONG-FORM BODY (editorial intro) ──────────────────────────── */
.catalog-body-section { background: var(--bg); }
.hub-body h2 {
    margin-top: var(--sp-10);
    margin-bottom: var(--sp-4);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--border-subtle);
}
.hub-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.hub-body p { margin-bottom: var(--sp-4); line-height: var(--lh-relaxed); }
.hub-body .answer-box {
    background: var(--primary-50);
    border-left: 3px solid var(--primary);
    border-radius: var(--r-md);
    padding: var(--sp-4) var(--sp-5);
    margin: var(--sp-5) 0;
}
.hub-body .answer-box__label {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 6px;
}
.hub-body .answer-box__text { margin: 0; font-size: var(--fs-md); line-height: var(--lh-relaxed); }
.hub-body .review-pullquote {
    margin: var(--sp-8) 0;
    padding: var(--sp-5) var(--sp-6);
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--r-lg);
}
.hub-body .review-pullquote blockquote {
    margin: 0 0 var(--sp-3);
    font-size: var(--fs-lg);
    font-weight: var(--fw-medium);
    line-height: var(--lh-snug);
    color: var(--text);
    font-style: italic;
}
.hub-body .review-pullquote figcaption {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}
/* Body aside cards — break wall-of-text into accent blocks */
.hub-body .body-aside {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    margin: var(--sp-6) 0;
    padding: var(--sp-4) var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xs);
}
.hub-body .body-aside--exclude {
    border-left-color: var(--alert);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.025), transparent 60%), var(--surface);
}
.hub-body .body-aside--stats {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.025), transparent 60%), var(--surface);
}
.hub-body .body-aside--ethics {
    border-left-color: var(--success);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.025), transparent 60%), var(--surface);
}
.hub-body .body-aside__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
}
.hub-body .body-aside--exclude .body-aside__icon { background: var(--alert-50); color: var(--alert); }
.hub-body .body-aside--stats .body-aside__icon { background: var(--accent-50); color: var(--accent-dark); }
.hub-body .body-aside--ethics .body-aside__icon { background: var(--success-50); color: var(--success); }
.hub-body .body-aside__body { flex: 1; min-width: 0; }
.hub-body .body-aside__title {
    margin: 0 0 var(--sp-2);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: var(--lh-snug);
}
.hub-body .body-aside p {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: var(--lh-relaxed);
}
@media (max-width: 540px) {
    .hub-body .body-aside { flex-direction: column; gap: var(--sp-3); }
}

.hub-body .review-callout {
    display: flex;
    gap: var(--sp-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: var(--sp-4) var(--sp-5);
    margin: var(--sp-3) 0;
}
.hub-body .review-callout__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--r-full);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
}
.hub-body .review-callout__title {
    font-weight: var(--fw-bold);
    color: var(--text);
    margin-bottom: 4px;
}
.hub-body .review-callout__text {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}
.hub-body .hub-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    margin: var(--sp-4) 0;
    font-size: var(--fs-sm);
}
.hub-body .hub-compare-table th,
.hub-body .hub-compare-table td {
    padding: var(--sp-2) var(--sp-3);
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.hub-body .hub-compare-table th {
    background: var(--bg-alt);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-strong);
}
.hub-body .hub-compare-table tbody tr:hover { background: var(--bg-alt); }
.hub-body .hub-compare-table tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 767px) {
    .hub-body .hub-compare-table { font-size: var(--fs-xs); }
    .hub-body .hub-compare-table th,
    .hub-body .hub-compare-table td { padding: var(--sp-2); }
}

/* ── 6. MECHANIC-SEGMENTED SUB-GRIDS ──────────────────────────────── */
.mechanic-groups-section { background: var(--bg-alt); }
.mechanic-group {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(20px, 3vw, 32px);
    margin-bottom: var(--sp-6);
    box-shadow: var(--shadow-sm);
}
.mechanic-group:last-child { margin-bottom: 0; }
.mechanic-group__head {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    padding-bottom: var(--sp-4);
    margin-bottom: var(--sp-5);
    border-bottom: 1px solid var(--border-subtle);
}
.mechanic-group__symbol {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
}
.mechanic-group__head--chicken .mechanic-group__symbol { background: var(--alert-50); color: var(--alert); }
.mechanic-group__head--balloon .mechanic-group__symbol { background: var(--accent-50); color: var(--accent-dark); }
.mechanic-group__head--sports  .mechanic-group__symbol { background: var(--success-50); color: var(--success); }
.mechanic-group__head--live    .mechanic-group__symbol { background: #FEF3C7; color: #B45309; }
.mechanic-group__title {
    margin: 0 0 4px;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: var(--lh-tight);
}
.mechanic-group__count {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-muted);
}
.mechanic-group__lead {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}
.mechanic-group__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-2);
}
@media (min-width: 480px) {
    .mechanic-group__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
    .mechanic-group__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
}
@media (min-width: 1024px) {
    .mechanic-group__grid { grid-template-columns: repeat(4, 1fr); }
}
.catalog-tile {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3);
    background: var(--bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    text-decoration: none;
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.catalog-tile:hover {
    border-color: var(--primary);
    background: var(--surface);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.catalog-tile__thumb {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--primary-50);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog-tile__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalog-tile__thumb-placeholder {
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--primary);
}
.catalog-tile__body {
    min-width: 0;
    flex: 1;
}
.catalog-tile__name {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog-tile__meta {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.catalog-tile__sep { margin: 0 4px; opacity: 0.5; }

/* ── 7. PROVIDER DISTRIBUTION CHART ───────────────────────────────── */
.provider-dist-section { background: var(--bg); }
.provider-dist {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(16px, 2.5vw, 28px);
    box-shadow: var(--shadow-sm);
}
.provider-dist__row {
    display: grid;
    grid-template-columns: 110px 1fr 32px;
    gap: var(--sp-3);
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: background var(--t-fast);
}
@media (min-width: 768px) {
    .provider-dist__row { grid-template-columns: 180px 1fr 36px; gap: var(--sp-4); }
}
.provider-dist__row:hover { background: var(--bg-alt); }
.provider-dist__name {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.provider-dist__row:hover .provider-dist__name { color: var(--primary); }
.provider-dist__bar-wrap {
    background: var(--bg-alt);
    border-radius: var(--r-sm);
    height: 14px;
    overflow: hidden;
    position: relative;
}
.provider-dist__bar {
    display: block;
    height: 100%;
    background: var(--grad-primary);
    border-radius: var(--r-sm);
    min-width: 8px;
    transition: width 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.provider-dist__count {
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--text);
    text-align: right;
}

/* ── 8. CASINO STRIP — uses home.css .casino-roster (horizontal) ─── */
/* Compact modifier: same horizontal layout as home, just 3 rows */
.casino-roster--compact { /* inherits all .casino-roster styles from home.css */ }
.catalog-casinos-section__note {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin: var(--sp-4) 0 0;
    padding-top: var(--sp-3);
    border-top: 1px dashed var(--border);
}
.catalog-casinos-section__note a {
    color: var(--primary);
    font-weight: var(--fw-semibold);
}

/* ── 9. NEWEST RELEASES STRIP ─────────────────────────────────────── */
.newest-section { background: var(--bg); }
.newest-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(16px, 2.5vw, 24px);
    box-shadow: var(--shadow-sm);
}
.newest-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: var(--sp-4);
    padding: var(--sp-3) 0;
    border-bottom: 1px dashed var(--border);
    align-items: start;
}
@media (max-width: 480px) {
    .newest-item { grid-template-columns: 1fr; gap: var(--sp-2); }
}
.newest-item:last-child { border-bottom: 0; padding-bottom: 0; }
.newest-item:first-child { padding-top: 0; }
.newest-item__date {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-dark);
    background: var(--accent-50);
    padding: 4px 10px;
    border-radius: var(--r-sm);
    align-self: start;
    justify-self: start;
}
.newest-item__title {
    margin: 0 0 4px;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
}
.newest-item__title a { color: var(--text); }
.newest-item__title a:hover { color: var(--primary); }
.newest-item__note {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

/* ── 10. PAIR-WITH-TOOLS BLOCK ────────────────────────────────────── */
.tools-pair-block {
    background:
        linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
    border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
    border-radius: var(--r-xl);
    padding: clamp(20px, 3vw, 32px);
}
.tools-pair-block__head {
    text-align: center;
    margin-bottom: var(--sp-5);
}
.tools-pair-block__title {
    margin: 0 0 var(--sp-2);
    font-size: clamp(1.25rem, 2vw + 0.4rem, 1.625rem);
    color: var(--text);
}
.tools-pair-block__lead {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}
.tools-pair-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
}
@media (min-width: 640px) {
    .tools-pair-block__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}
.tools-pair-card {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    padding: var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: border-color var(--t-fast), transform var(--t-fast);
    box-shadow: var(--shadow-xs);
}
.tools-pair-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.tools-pair-card__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    line-height: 1;
}
.tools-pair-card__name {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
}
.tools-pair-card__lead {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

/* ── 11. CATALOG FAQ ──────────────────────────────────────────────── */
.catalog-faq-section { background: var(--bg-alt); }
.catalog-faq-section .faq-head {
    text-align: center;
    margin-bottom: var(--sp-6);
}
.catalog-faq-section .faq-head__eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-50);
    padding: 4px 10px;
    border-radius: var(--r-full);
    margin-bottom: var(--sp-2);
}
.catalog-faq-section .faq-head__title {
    margin: 0 0 var(--sp-2);
}
.catalog-faq-section .faq-head__lead {
    margin: 0 auto;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    max-width: 640px;
}
.catalog-faq-section .faq-list--home {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-3);
    box-shadow: var(--shadow-sm);
}
.catalog-faq-section .faq-item {
    border-radius: var(--r-md);
    background: var(--bg);
    border: 1px solid var(--border-subtle);
    transition: border-color var(--t-fast);
}
.catalog-faq-section .faq-item[open] { border-color: var(--primary); }
.catalog-faq-section .faq-item__q {
    cursor: pointer;
    list-style: none;
    padding: var(--sp-3) var(--sp-4);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-md);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
}
.catalog-faq-section .faq-item__q::-webkit-details-marker { display: none; }
.catalog-faq-section .faq-item__q::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: var(--fs-lg);
    color: var(--primary);
    transition: transform var(--t-fast);
}
.catalog-faq-section .faq-item[open] .faq-item__q::after { content: '−'; transform: rotate(0deg); }
.catalog-faq-section .faq-item__a {
    padding: 0 var(--sp-4) var(--sp-4);
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: var(--lh-relaxed);
}
.catalog-faq-section .faq-item__a p { margin: 0 0 var(--sp-3); }
.catalog-faq-section .faq-item__a p:last-child { margin: 0; }

/* ── 12. CROSS-HUB LINKS (5 cards w/ SVG icons + per-hub gradient) ── */
.cross-hubs-section { background: var(--bg); }
.cross-hubs {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
}
@media (min-width: 640px) {
    .cross-hubs { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}
@media (min-width: 1024px) {
    .cross-hubs { grid-template-columns: repeat(5, 1fr); }
}
.cross-hub {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}
.cross-hub::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-primary);
    opacity: 0.6;
    transition: opacity var(--t-fast), height var(--t-fast);
}
.cross-hub:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.cross-hub:hover::before {
    opacity: 1;
    height: 4px;
}
.cross-hub__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--r-lg);
    background: var(--primary-50);
    color: var(--primary);
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.cross-hub__icon svg {
    width: 32px;
    height: 32px;
}
.cross-hub:hover .cross-hub__icon {
    transform: scale(1.05) rotate(-3deg);
}

/* Per-hub icon tints */
.cross-hub--home    .cross-hub__icon { background: var(--primary-50);                color: var(--primary-dark); }
.cross-hub--home::before              { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.cross-hub--studios .cross-hub__icon { background: var(--accent-50);                 color: var(--accent-dark); }
.cross-hub--studios::before           { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.cross-hub--versus  .cross-hub__icon { background: #FEF3C7;                          color: #B45309; }
.cross-hub--versus::before            { background: linear-gradient(135deg, #F59E0B, #FB923C); }
.cross-hub--tools   .cross-hub__icon { background: var(--success-50);                color: var(--success); }
.cross-hub--tools::before             { background: linear-gradient(135deg, #10B981, #06B6D4); }
.cross-hub--blog    .cross-hub__icon { background: var(--alert-50);                  color: var(--alert); }
.cross-hub--blog::before              { background: var(--grad-crash); }

.cross-hub__title {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: var(--lh-snug);
}
.cross-hub__lead {
    flex: 1;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    margin: 0;
}
.cross-hub__arrow {
    align-self: flex-end;
    font-family: var(--font-mono);
    font-size: var(--fs-xl);
    color: var(--primary);
    line-height: 1;
    transition: transform var(--t-fast);
}
.cross-hub:hover .cross-hub__arrow { transform: translateX(4px); }
.cross-hub--home    .cross-hub__arrow { color: var(--primary); }
.cross-hub--studios .cross-hub__arrow { color: var(--accent-dark); }
.cross-hub--versus  .cross-hub__arrow { color: #B45309; }
.cross-hub--tools   .cross-hub__arrow { color: var(--success); }
.cross-hub--blog    .cross-hub__arrow { color: var(--alert); }

/* ── SECTION HEAD CENTER VARIANT (used across the catalog) ────────── */
.section-head--centered {
    text-align: center;
    margin-bottom: var(--section-head-mb);
}
.section-head--centered .section-head__title {
    margin: 0 0 var(--sp-2);
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.875rem);
}
.section-head--centered .section-head__subtitle {
    margin: 0 auto;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    max-width: 720px;
}

/* ── COMMON: block-eyebrow (used across structured blocks) ─────────── */
.block-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-50);
    border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
    padding: 4px 10px;
    border-radius: var(--r-full);
    margin-bottom: var(--sp-3);
}
.block-eyebrow--alert {
    color: var(--alert);
    background: var(--alert-50);
    border-color: color-mix(in srgb, var(--alert) 22%, transparent);
}

/* ── 5b. METHODOLOGY 2×2 GRID (cards have long body — never 4 in row) */
.methodology-section { background: var(--bg); }
.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}
@media (min-width: 640px) {
    .methodology-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}
.meth-card {
    position: relative;
    padding: var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xs);
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}
.meth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity var(--t-fast);
}
.meth-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.meth-card:hover::before { opacity: 1; }
.meth-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--primary-50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
}
.meth-card:nth-child(2) .meth-card__icon { background: var(--accent-50); }
.meth-card:nth-child(3) .meth-card__icon { background: #FEF3C7; }
.meth-card:nth-child(4) .meth-card__icon { background: var(--success-50); }
.meth-card__title {
    margin: 0;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: var(--lh-snug);
}
.meth-card__body {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

/* ── 5c. INCLUSION CRITERIA BADGES BLOCK ──────────────────────────── */
.inclusion-section { background: var(--bg-alt); }
.inclusion-block {
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(239, 68, 68, 0.04) 100%),
        var(--surface);
    border: 1px solid color-mix(in srgb, var(--alert) 18%, transparent);
    border-left: 4px solid var(--alert);
    border-radius: var(--r-xl);
    padding: clamp(20px, 3vw, 32px);
    box-shadow: var(--shadow-sm);
}
.inclusion-block__head {
    text-align: center;
    margin-bottom: var(--sp-6);
}
.inclusion-block__title {
    margin: 0 0 var(--sp-2);
    font-size: clamp(1.25rem, 2vw + 0.4rem, 1.625rem);
    color: var(--text);
}
.inclusion-block__lead {
    margin: 0 auto;
    max-width: 720px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}
.inclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
}
@media (min-width: 768px) {
    .inclusion-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
}
.inclusion-card {
    position: relative;
    padding: var(--sp-5);
    padding-left: 64px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color var(--t-fast), transform var(--t-fast);
}
.inclusion-card:hover {
    border-color: var(--alert);
    transform: translateY(-1px);
}
.inclusion-card__badge {
    position: absolute;
    top: var(--sp-5);
    left: var(--sp-5);
    width: 36px;
    height: 36px;
    border-radius: var(--r-full);
    background: var(--grad-crash);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.inclusion-card__title {
    margin: 0 0 var(--sp-2);
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: var(--lh-snug);
}
.inclusion-card__body {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}
.inclusion-block__footnote {
    text-align: center;
    margin: 0;
    padding-top: var(--sp-4);
    border-top: 1px dashed var(--border);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

/* ── 5d. GLOSSARY 5-TILE GRID ─────────────────────────────────────── */
.glossary-section { background: var(--bg); }
.glossary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-3);
}
@media (min-width: 640px) {
    .glossary-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}
@media (min-width: 1024px) {
    .glossary-grid { grid-template-columns: repeat(3, 1fr); }
    .glossary-grid .glossary-tile:nth-child(4),
    .glossary-grid .glossary-tile:nth-child(5) {
        grid-column: span 1;
    }
    .glossary-grid .glossary-tile:nth-child(4) { grid-column: 1 / 3; }
    .glossary-grid .glossary-tile:nth-child(5) { grid-column: 3 / 4; }
}
.glossary-tile {
    display: flex;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    transition: border-color var(--t-fast), background var(--t-fast);
}
.glossary-tile:hover {
    border-color: var(--accent);
    background: var(--accent-50);
}
.glossary-tile__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--accent-50);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
}
.glossary-tile__body {
    flex: 1;
    min-width: 0;
}
.glossary-tile__term {
    margin: 0 0 4px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
}
.glossary-tile__def {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}

/* ── 7b. HEAD-TO-HEAD DECISION CARDS ──────────────────────────────── */
.head-to-head-section { background: var(--bg-alt); }
.head-to-head-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5);
}
@media (min-width: 768px) {
    .head-to-head-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}
.h2h-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-5);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    text-decoration: none;
    box-shadow: var(--shadow-xs);
    transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    overflow: hidden;
}
.h2h-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.h2h-card__head {
    border-bottom: 1px dashed var(--border);
    padding-bottom: var(--sp-3);
}
.h2h-card__title {
    margin: 0 0 4px;
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: var(--lh-snug);
}
.h2h-card__subtitle {
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.h2h-card__verdict {
    display: flex;
    align-items: baseline;
    gap: var(--sp-3);
    background: var(--primary-50);
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--r-md);
}
.h2h-card__score {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: var(--fw-black);
    color: var(--primary-dark);
    line-height: 1;
}
.h2h-card__winner {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--primary);
}
.h2h-card__winner::before {
    content: 'verdict: ';
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.h2h-card__summary {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: var(--lh-relaxed);
    flex: 1;
}
.h2h-card__cta {
    margin-top: auto;
    padding-top: var(--sp-2);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--primary);
    transition: transform var(--t-fast);
}
.h2h-card:hover .h2h-card__cta {
    transform: translateX(4px);
}
.head-to-head-section__more {
    text-align: center;
}
.head-to-head-section__more-link {
    display: inline-block;
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--r-full);
    transition: background var(--t-fast), color var(--t-fast);
}
.head-to-head-section__more-link:hover {
    background: var(--primary);
    color: #FFFFFF;
}

/* ── 9b. BLOG READING PATHS ───────────────────────────────────────── */
.blog-paths-section { background: var(--bg); }
.blog-paths {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
}
@media (min-width: 768px) {
    .blog-paths { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
}
.blog-cluster {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-4);
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}
.blog-cluster__head {
    border-bottom: 1px dashed var(--border);
    padding-bottom: var(--sp-3);
    text-align: center;
}
.blog-cluster__pill {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--r-full);
    font-family: var(--font-mono);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    background: var(--grad-primary);
}
.blog-cluster--indigo .blog-cluster__pill { background: var(--grad-primary); }
.blog-cluster--emerald .blog-cluster__pill {
    background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
}
.blog-cluster--orange .blog-cluster__pill {
    background: var(--grad-crash);
}
.blog-cluster--indigo  { border-top: 3px solid var(--primary); }
.blog-cluster--emerald { border-top: 3px solid var(--success); }
.blog-cluster--orange  { border-top: 3px solid var(--alert); }
.blog-cluster__posts {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.blog-post-card {
    position: relative;
    display: block;
    padding: var(--sp-3) var(--sp-4);
    padding-right: 36px;
    background: var(--bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-md);
    text-decoration: none;
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.blog-post-card:hover {
    border-color: var(--primary);
    background: var(--surface);
    transform: translateX(2px);
}
.blog-post-card__title {
    margin: 0 0 4px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--text);
    line-height: var(--lh-snug);
}
.blog-post-card__lead {
    margin: 0;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
}
.blog-post-card__arrow {
    position: absolute;
    right: var(--sp-3);
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: var(--fs-md);
    transition: transform var(--t-fast);
}
.blog-post-card:hover .blog-post-card__arrow {
    transform: translateY(-50%) translateX(2px);
}

/* ── AUTHOR BYLINE ──────────────────────────────────────────────── */
.author-byline {
    display: flex;
    justify-content: center;
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border-subtle);
}
.author-byline__inner {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    flex-wrap: wrap;
    justify-content: center;
}
.author-byline__label { font-weight: var(--fw-medium); }
.author-byline__name {
    color: var(--primary);
    font-weight: var(--fw-semibold);
}
.author-byline__sep { opacity: 0.4; }
.author-byline__date { font-family: var(--font-mono); font-size: var(--fs-xs); }
