/* /Components/Footer/SiteFooter.razor.rz.scp.css */
/* ============================================================
   SITE FOOTER — the espresso sign-off
   One lean band: test bars on entry, wordmark + channel line,
   a single mono nav row, socials, one bottom line. Nothing else.
   ============================================================ */

.site-footer[b-4708mtxtl1] {
    position: relative;
    background: var(--ink);
    color: var(--on-dark);
    overflow: hidden;
}

.footer-bars[b-4708mtxtl1] {
    height: 10px;
    background: repeating-linear-gradient(
        to right,
        var(--amber)  0 64px,
        var(--card)   64px 112px,
        var(--signal) 112px 136px,
        var(--amber-deep) 136px 200px
    );
    border-bottom: var(--bw) solid rgba(247, 243, 234, 0.35);
}

.footer-container[b-4708mtxtl1] {
    position: relative;
    z-index: 1;
    max-width: var(--frame-max);
    margin-inline: auto;
    padding: clamp(2.4rem, 6vw, 3.4rem) clamp(1.1rem, 4vw, 2.5rem) 0;
}

/* ---------- Main row: brand · nav · socials ---------- */
.footer-main[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.6rem 2.5rem;
    padding-bottom: clamp(1.8rem, 4vw, 2.4rem);
    border-bottom: 1px solid var(--hairline-dark);
}

.footer-brand[b-4708mtxtl1] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-decoration: none;
}

.brand-wordmark[b-4708mtxtl1] {
    width: min(190px, 56vw);
    height: auto;
}

.brand-tagline[b-4708mtxtl1] {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--amber);
}

.footer-nav[b-4708mtxtl1] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.footer-link[b-4708mtxtl1] {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--on-dark-mid);
    padding: 0.55em 0.8em;
    border: 1.5px solid transparent;
    transition: color var(--t-fast) linear,
                border-color var(--t-fast) linear;
}

.footer-link:hover[b-4708mtxtl1] {
    color: var(--on-dark);
    border-color: var(--hairline-dark);
}

.social-links[b-4708mtxtl1] {
    display: flex;
    gap: 0.55rem;
}

.social-link[b-4708mtxtl1] {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--on-dark);
    background: transparent;
    border: 1.5px solid var(--hairline-dark);
    text-decoration: none;
    transition: background var(--t-fast) linear,
                color var(--t-fast) linear,
                border-color var(--t-fast) linear,
                transform var(--t-fast) var(--ease-snap);
}

.social-link:hover[b-4708mtxtl1] {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--ink);
    transform: translate(-1px, -1px);
}

/* ---------- Bottom line ---------- */
.footer-bottom[b-4708mtxtl1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-block: 1.3rem 1.6rem;
}

.copyright[b-4708mtxtl1],
.made-with[b-4708mtxtl1] {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--on-dark-low);
}

.heart-icon[b-4708mtxtl1] { color: var(--signal); }

/* ---------- Stacked on small screens ---------- */
@media (max-width: 900px) {
    .footer-main[b-4708mtxtl1] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand[b-4708mtxtl1] { align-items: center; }

    .footer-nav[b-4708mtxtl1] { justify-content: center; }

    .footer-bottom[b-4708mtxtl1] {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
}
/* /Components/Header/SiteHeader.razor.rz.scp.css */
/* ============================================================
   SITE HEADER — "Broadcast Block" masthead
   A station ident: espresso metadata strip up top, paper
   masthead with a hard 2px rule below, mono nav, red LIVE
   block. nav-interactions.js toggles .scrolled past 50px —
   the strip collapses and the bar condenses.
   ============================================================ */

.nav-header-premium[b-rrwd4hfifd] {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--paper);
    border-bottom: var(--bw) solid var(--ink);
}

/* ---------- Station strip ---------- */
.nav-topline[b-rrwd4hfifd] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: var(--ink);
    color: var(--on-dark-mid);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 0.4rem clamp(1.1rem, 4vw, 2.5rem);
    overflow: hidden;
    max-height: 3rem;
    transition: max-height var(--t-med) var(--ease-out),
                padding var(--t-med) var(--ease-out);
}

.nav-header-premium.scrolled .nav-topline[b-rrwd4hfifd] {
    max-height: 0;
    padding-block: 0;
}

.topline-item[b-rrwd4hfifd] { white-space: nowrap; }

@media (max-width: 760px) {
    .topline-item:not(.topline-item--wide)[b-rrwd4hfifd] { display: none; }
    .nav-topline[b-rrwd4hfifd] { justify-content: center; }
}

/* ---------- Masthead bar ---------- */
.nav-container[b-rrwd4hfifd] {
    max-width: var(--frame-max);
    margin-inline: auto;
    padding: 0.85rem clamp(1.1rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: padding var(--t-med) var(--ease-out);
}

.nav-header-premium.scrolled .nav-container[b-rrwd4hfifd] { padding-block: 0.55rem; }

/* ---------- Logo lockup ---------- */
.nav-logo-wrapper[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex: none;
}

.logo-img[b-rrwd4hfifd] {
    height: 2.4rem;
    width: auto;
    transition: height var(--t-med) var(--ease-out);
}

.nav-header-premium.scrolled .logo-img[b-rrwd4hfifd] { height: 2rem; }

.logo-word[b-rrwd4hfifd] {
    font-family: var(--font-display);
    font-size: 0.78rem;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--ink);
    letter-spacing: 0.02em;
}

@media (max-width: 420px) {
    .logo-word[b-rrwd4hfifd] { display: none; }
}

/* ---------- Desktop nav ---------- */
.nav-links-desktop[b-rrwd4hfifd] {
    display: flex;
    align-items: stretch;
    gap: 0.25rem;
}

.nav-link-premium[b-rrwd4hfifd] {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.55em 0.85em;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ink-mid);
    border: 1.5px solid transparent;
    transition: color var(--t-fast) linear,
                background var(--t-fast) linear,
                border-color var(--t-fast) linear;
}

.nav-link-premium:hover[b-rrwd4hfifd] {
    color: var(--ink);
    border-color: var(--ink);
    background: var(--card);
}

/* active = the amber logo block */
.nav-link-premium.active[b-rrwd4hfifd] {
    color: var(--ink);
    background: var(--amber);
    border-color: var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
}

.nav-link-indicator[b-rrwd4hfifd] { display: none; }

@media (max-width: 900px) {
    .nav-links-desktop[b-rrwd4hfifd] { display: none; }
}

/* ---------- Actions ---------- */
.nav-actions-premium[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.action-btn[b-rrwd4hfifd] {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    cursor: pointer;
    transition: transform var(--t-fast) var(--ease-snap),
                box-shadow var(--t-fast) var(--ease-snap),
                background var(--t-fast) linear;
}

.action-btn:hover[b-rrwd4hfifd] {
    background: var(--amber-wash);
    transform: translate(-1px, -1px);
    box-shadow: 2px 2px 0 var(--ink);
}

.live-indicator-btn[b-rrwd4hfifd] {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: var(--signal);
    color: var(--on-dark);
    border: 1.5px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 0.55em 0.9em;
    transition: transform var(--t-fast) var(--ease-snap),
                box-shadow var(--t-fast) var(--ease-snap),
                background var(--t-fast) linear;
}

/* the tally light must read against the red block */
.live-indicator-btn[b-rrwd4hfifd]  .pulse-dot,
.live-indicator-btn .pulse-dot[b-rrwd4hfifd] {
    background: var(--on-dark);
}

.live-indicator-btn:hover[b-rrwd4hfifd] {
    background: var(--signal-deep);
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--ink);
}

/* ---------- Hamburger ---------- */
.hamburger-premium[b-rrwd4hfifd] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.5rem;
    background: var(--card);
    border: 1.5px solid var(--ink);
    cursor: pointer;
}

.hamburger-line[b-rrwd4hfifd] {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--ink);
    transition: transform var(--t-med) var(--ease-snap),
                opacity var(--t-fast) linear;
}

.hamburger-premium.active .hamburger-line:nth-child(1)[b-rrwd4hfifd] {
    transform: translateY(7.5px) rotate(45deg);
}
.hamburger-premium.active .hamburger-line:nth-child(2)[b-rrwd4hfifd] { opacity: 0; }
.hamburger-premium.active .hamburger-line:nth-child(3)[b-rrwd4hfifd] {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 900px) {
    .hamburger-premium[b-rrwd4hfifd] { display: flex; }
}

/* ============================================================
   MOBILE PANEL
   ============================================================ */

.mobile-menu-overlay[b-rrwd4hfifd] {
    position: fixed;
    inset: 0;
    background: rgba(24, 16, 8, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) linear;
    z-index: var(--z-overlay);
}

.mobile-menu-overlay.active[b-rrwd4hfifd] {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel[b-rrwd4hfifd] {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(21rem, 88vw);
    background: var(--paper);
    border-left: var(--bw) solid var(--ink);
    transform: translateX(102%);
    transition: transform var(--t-med) var(--ease-out);
    z-index: calc(var(--z-overlay) + 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel.active[b-rrwd4hfifd] { transform: translateX(0); }

.mobile-nav-header[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: var(--bw) solid var(--ink);
    background: var(--amber);
}

.mobile-nav-title[b-rrwd4hfifd] {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.mobile-close-btn[b-rrwd4hfifd] {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1.5px solid var(--ink);
    cursor: pointer;
    color: var(--ink);
}

.mobile-nav-links[b-rrwd4hfifd] {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-nav-link[b-rrwd4hfifd] {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 1.4rem;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
}

.mobile-link-num[b-rrwd4hfifd] {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ink-low);
}

.mobile-link-label[b-rrwd4hfifd] {
    font-family: var(--font-display);
    font-size: 1.35rem;
    text-transform: uppercase;
    flex: 1;
}

.mobile-link-arrow[b-rrwd4hfifd] {
    font-family: var(--font-mono);
    color: var(--ink-low);
}

.mobile-nav-link.active .mobile-link-num[b-rrwd4hfifd] { color: var(--ink); }
.mobile-nav-link.active .mobile-link-label[b-rrwd4hfifd] {
    background: var(--amber);
    padding: 0 0.2em;
    box-shadow: 2px 2px 0 var(--ink);
}
.mobile-nav-link.active .mobile-link-arrow[b-rrwd4hfifd] { color: var(--ink); }

.mobile-nav-footer[b-rrwd4hfifd] {
    border-top: var(--bw) solid var(--ink);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-icon-mobile[b-rrwd4hfifd] {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--ink);
    background: var(--card);
    color: var(--ink);
    transition: background var(--t-fast) linear;
}

.social-icon-mobile:hover[b-rrwd4hfifd] { background: var(--amber); }

.mobile-footer-text[b-rrwd4hfifd] {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--ink-low);
    text-transform: uppercase;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */

.search-overlay[b-rrwd4hfifd] {
    position: fixed;
    inset: 0;
    background: rgba(24, 16, 8, 0.55);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(4rem, 14vh, 8rem) 1.2rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) linear;
    z-index: calc(var(--z-overlay) + 2);
}

.search-overlay.active[b-rrwd4hfifd] {
    opacity: 1;
    pointer-events: auto;
}

.search-container[b-rrwd4hfifd] {
    width: min(38rem, 100%);
    background: var(--paper);
    border: var(--bw) solid var(--ink);
    box-shadow: var(--drop-lg);
    transform: translateY(-12px);
    transition: transform var(--t-med) var(--ease-out);
}

.search-overlay.active .search-container[b-rrwd4hfifd] { transform: translateY(0); }

.search-header[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.3rem;
    border-bottom: var(--bw) solid var(--ink);
    background: var(--amber);
}

.search-header h3[b-rrwd4hfifd] {
    font-family: var(--font-display);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.search-close-btn[b-rrwd4hfifd] {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1.5px solid var(--ink);
    cursor: pointer;
    color: var(--ink);
}

.search-input-wrapper[b-rrwd4hfifd] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.2rem 1.3rem;
    border-bottom: 1px solid var(--hairline);
}

.search-icon[b-rrwd4hfifd] { color: var(--ink-low); flex: none; }

.search-input-premium[b-rrwd4hfifd] {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--ink);
    outline: none;
}

.search-input-premium[b-rrwd4hfifd]::placeholder { color: var(--ink-low); }

.search-suggestions[b-rrwd4hfifd] { padding: 1.1rem 1.3rem 1.4rem; }

.search-suggestions-label[b-rrwd4hfifd] {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-low);
    margin-bottom: 0.7rem;
}

.search-tag-list[b-rrwd4hfifd] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-tag[b-rrwd4hfifd] {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--card);
    border: 1.5px solid var(--ink);
    padding: 0.45em 0.8em;
    cursor: pointer;
    transition: background var(--t-fast) linear,
                box-shadow var(--t-fast) var(--ease-snap),
                transform var(--t-fast) var(--ease-snap);
}

.search-tag:hover[b-rrwd4hfifd] {
    background: var(--amber);
    transform: translate(-1px, -1px);
    box-shadow: 2px 2px 0 var(--ink);
}
/* /Components/Home/PrayerRequestSection.razor.rz.scp.css */
/* Prayer request — an official station form: amber-headed block card
   with a file reference, next to the scripture and the ledger stats. */

.request-grid[b-aco1d5xs2c] {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2.2rem, 6vw, 4.5rem);
    align-items: start;
}

@media (max-width: 980px) {
    .request-grid[b-aco1d5xs2c] { grid-template-columns: 1fr; }
}

/* ---------- Intro column ---------- */

.intro-scripture[b-aco1d5xs2c] { margin-top: 1.6rem; }

.intro-scripture .serif-grad[b-aco1d5xs2c] {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    line-height: 1.5;
}

.intro-scripture cite[b-aco1d5xs2c] {
    display: block;
    margin-top: 0.8rem;
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    color: var(--ink-low);
}

.intro-copy[b-aco1d5xs2c] {
    margin-top: 1.4rem;
    color: var(--ink-mid);
    font-size: 0.95rem;
}

.intro-assurances[b-aco1d5xs2c] {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.intro-assurances li[b-aco1d5xs2c] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.assurance-icon[b-aco1d5xs2c] {
    width: 2.2rem;
    height: 2.2rem;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--amber);
    border: 1.5px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    font-size: 0.85rem;
}

/* ---------- Stats ledger ---------- */

.prayer-stats[b-aco1d5xs2c] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .prayer-stats[b-aco1d5xs2c] { grid-template-columns: 1fr; }
}

.stat[b-aco1d5xs2c] {
    padding: 0.9rem 0.9rem 0.8rem;
    box-shadow: var(--drop-sm);
}

.stat-number[b-aco1d5xs2c] {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1;
}

.stat-label[b-aco1d5xs2c] {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--font-mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-low);
}

/* ---------- The form ---------- */

.prayer-form[b-aco1d5xs2c] {
    background: var(--card);
    border: var(--bw) solid var(--ink);
    box-shadow: var(--drop-lg);
}

.prayer-form-head[b-aco1d5xs2c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1.3rem;
    background: var(--amber);
    border-bottom: var(--bw) solid var(--ink);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.prayer-form-ref[b-aco1d5xs2c] { color: rgba(24, 16, 8, 0.6); }

@media (max-width: 480px) {
    .prayer-form-ref[b-aco1d5xs2c] { display: none; }
}

.prayer-form-body[b-aco1d5xs2c] { padding: clamp(1.3rem, 3vw, 1.9rem); }

.btn-submit[b-aco1d5xs2c] { width: 100%; }
/* /Components/Live/LiveHeroSection.razor.rz.scp.css */
/* Live hero — ruled guide masthead with the signal-red LIVE block */
.live-hero[b-h140h4h9c7] {
    border-bottom: var(--bw) solid var(--ink);
    padding-block: clamp(3rem, 8vh, 5.5rem) clamp(2.6rem, 7vh, 4.5rem);
}

.hero-topline[b-h140h4h9c7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.hero-headline[b-h140h4h9c7] {
    font-size: clamp(2.4rem, 6vw, 4.3rem);
    max-width: 18ch;
}

/* the LIVE word set in the signal-red block */
.hl-signal[b-h140h4h9c7] {
    display: inline-block;
    background: var(--signal);
    color: var(--on-dark);
    padding: 0.04em 0.18em;
}

.hero-lede[b-h140h4h9c7] {
    margin-top: 1.3rem;
    color: var(--ink-mid);
    font-size: 1.02rem;
    max-width: 34rem;
}

.hero-actions[b-h140h4h9c7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

@media (max-width: 560px) {
    .hero-actions .btn[b-h140h4h9c7] { width: 100%; }
}
/* /Components/Live/LiveStreamSection.razor.rz.scp.css */
/* Live stream — the broadcast monitor. A 16:9 espresso screen in a
   hard block frame with OSD corners, scanlines, a standby test card
   strip and a VU meter holding the silence. */

.stream-section[b-em84pthtl1] { padding-block: clamp(3rem, 8vh, 5rem); }

.stream-meta[b-em84pthtl1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.meta-spec[b-em84pthtl1] {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-low);
}

.meta-sep[b-em84pthtl1] {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border: 1px solid var(--ink);
    display: inline-block;
}

/* ---------- the monitor ---------- */

.stream-screen[b-em84pthtl1] {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--ink);
    border: var(--bw-heavy) solid var(--ink);
    box-shadow: var(--drop-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* faint CRT scanlines */
.screen-scanlines[b-em84pthtl1] {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0 3px,
        rgba(247, 243, 234, 0.03) 3px 4px
    );
    pointer-events: none;
}

/* on-screen display corners */
.screen-osd[b-em84pthtl1] {
    position: absolute;
    top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 0.3em 0.6em;
}

.screen-osd--tl[b-em84pthtl1] {
    left: 1rem;
    color: var(--amber);
    border: 1.5px solid var(--amber);
    animation: tally-blink 1.6s steps(2, jump-none) infinite;
}

.screen-osd--tr[b-em84pthtl1] {
    right: 1rem;
    color: var(--on-dark-mid);
}

.screen-center[b-em84pthtl1] {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--on-dark);
    padding: 1.5rem;
    max-width: 34rem;
}

.play-block[b-em84pthtl1] {
    width: 4rem;
    height: 4rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber);
    color: var(--ink);
    border: var(--bw) solid var(--on-dark);
    box-shadow: 4px 4px 0 rgba(247, 243, 234, 0.25);
    font-size: 1.3rem;
    transition: transform var(--t-fast) var(--ease-snap),
                box-shadow var(--t-fast) var(--ease-snap);
}

.stream-screen:hover .play-block[b-em84pthtl1] {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(247, 243, 234, 0.25);
}

.screen-label[b-em84pthtl1] {
    margin-top: 1.3rem;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--amber);
}

.screen-title[b-em84pthtl1] {
    margin-top: 0.7rem;
    font-size: clamp(1.3rem, 3.2vw, 2rem);
    color: var(--on-dark);
}

.hl-live[b-em84pthtl1] {
    display: inline-block;
    background: var(--signal);
    color: var(--on-dark);
    padding: 0.04em 0.18em;
}

.screen-copy[b-em84pthtl1] {
    margin-top: 0.8rem;
    font-size: 0.92rem;
    color: var(--on-dark-mid);
}

@media (max-width: 640px) {
    .screen-copy[b-em84pthtl1] { display: none; }
    .screen-osd[b-em84pthtl1] { display: none; }
}

/* ---------- VU meter ---------- */

.screen-eq[b-em84pthtl1] {
    position: absolute;
    bottom: 1.9rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 1.4rem;
}

.screen-eq span[b-em84pthtl1] {
    width: 4px;
    background: var(--amber);
    opacity: 0.85;
    animation: eq-dance-b-em84pthtl1 1.1s ease-in-out infinite alternate;
}

/* varied durations + delays — bars fall out of phase and stay there,
   so the meter reads as signal, not as a synchronized wave */
.screen-eq span:nth-child(2n)[b-em84pthtl1]  { animation-duration: 0.8s; }
.screen-eq span:nth-child(3n)[b-em84pthtl1]  { animation-delay: 0.25s; animation-duration: 1.35s; }
.screen-eq span:nth-child(3n+1)[b-em84pthtl1]{ animation-delay: 0.5s; }
.screen-eq span:nth-child(4n)[b-em84pthtl1]  { animation-delay: 0.75s; animation-duration: 0.95s; }
.screen-eq span:nth-child(5n)[b-em84pthtl1]  { animation-delay: 1s; animation-duration: 1.5s; }
.screen-eq span:nth-child(7n)[b-em84pthtl1]  { animation-duration: 0.7s; }

@keyframes eq-dance-b-em84pthtl1 {
    0%   { height: 12%; }
    28%  { height: 68%; }
    46%  { height: 26%; }
    64%  { height: 88%; }
    82%  { height: 42%; }
    100% { height: 96%; }
}

@media (max-width: 640px) {
    .screen-eq[b-em84pthtl1] { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .screen-eq span[b-em84pthtl1] { animation: none; height: 40%; }
    .screen-osd--tl[b-em84pthtl1] { animation: none; }
}

/* ---------- bottom test card ---------- */

.screen-bars[b-em84pthtl1] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    border-top: 1.5px solid rgba(247, 243, 234, 0.35);
    background: repeating-linear-gradient(
        to right,
        var(--amber)      0 72px,
        var(--card)       72px 128px,
        var(--signal)     128px 152px,
        var(--amber-deep) 152px 224px,
        var(--olive)      224px 264px
    );
}

/* ---------- foot ---------- */

.stream-foot[b-em84pthtl1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.foot-link[b-em84pthtl1] {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--amber);
    padding-bottom: 0.15em;
    transition: border-color var(--t-fast) linear;
}

.foot-link:hover[b-em84pthtl1] { border-color: var(--signal); }
/* /Components/Live/StreamQualitySection.razor.rz.scp.css */
/* What to expect — four block cards with amber icon plates */

.quality-section[b-d7aoj64hjr] {
    padding-block: clamp(3rem, 8vh, 5rem);
    border-top: var(--bw) solid var(--ink);
    background: var(--paper-deep);
}

.quality-grid[b-d7aoj64hjr] {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

@media (max-width: 1024px) { .quality-grid[b-d7aoj64hjr] { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .quality-grid[b-d7aoj64hjr] { grid-template-columns: 1fr; } }

.quality-card[b-d7aoj64hjr] { padding: 1.3rem 1.2rem 1.4rem; }

.card-top[b-d7aoj64hjr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.icon-block[b-d7aoj64hjr] {
    width: 2.7rem;
    height: 2.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--amber);
    border: var(--bw) solid var(--ink);
    color: var(--ink);
    font-size: 1.05rem;
    transition: transform var(--t-fast) var(--ease-snap);
}

.quality-card:hover .icon-block[b-d7aoj64hjr] { transform: rotate(-4deg); }

.card-no[b-d7aoj64hjr] { font-size: 0.7rem; }

.card-title[b-d7aoj64hjr] {
    font-size: 1rem;
    text-transform: uppercase;
}

.card-copy[b-d7aoj64hjr] {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.6;
}
/* /Components/Live/UpcomingStreams.razor.rz.scp.css */
/* Broadcast schedule — printed listing rows; the NEXT row goes espresso */

.upcoming-streams[b-x7vbpyldnd] {
    padding-block: clamp(3rem, 8vh, 5rem);
    border-top: var(--bw) solid var(--ink);
}

.sched-list[b-x7vbpyldnd] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sched-row[b-x7vbpyldnd] {
    display: grid;
    grid-template-columns: 11rem 1fr auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    background: var(--card);
    border: var(--bw) solid var(--ink);
    box-shadow: var(--drop);
    padding: 1.1rem 1.3rem;
    transition: transform var(--t-fast) var(--ease-snap),
                box-shadow var(--t-fast) var(--ease-snap);
}

.sched-row:hover[b-x7vbpyldnd] {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

.sched-when[b-x7vbpyldnd] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-right: 1.5px solid var(--ink);
    padding-right: 1rem;
}

.sched-days[b-x7vbpyldnd] {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-low);
}

.sched-time[b-x7vbpyldnd] {
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.1;
}

.sched-dur[b-x7vbpyldnd] {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--amber-ink);
}

.sched-what h3[b-x7vbpyldnd] {
    font-size: 1.05rem;
    text-transform: uppercase;
}

.sched-what p[b-x7vbpyldnd] {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: var(--ink-mid);
}

.sched-tags[b-x7vbpyldnd] {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* the NEXT broadcast flips to espresso */
.sched-row.next[b-x7vbpyldnd] {
    background: var(--ink);
    color: var(--on-dark);
}

.sched-row.next .sched-when[b-x7vbpyldnd] { border-right-color: var(--hairline-dark); }
.sched-row.next .sched-days[b-x7vbpyldnd] { color: var(--on-dark-low); }
.sched-row.next .sched-time[b-x7vbpyldnd] { color: var(--amber); }
.sched-row.next .sched-what p[b-x7vbpyldnd] { color: var(--on-dark-mid); }

.sched-row.next .sched-tag[b-x7vbpyldnd] {
    background: transparent;
    color: var(--on-dark);
    border-color: var(--on-dark-mid);
}

.chip-next[b-x7vbpyldnd] {
    background: var(--amber);
    animation: tally-blink 1.6s steps(2, jump-none) infinite;
}

@media (max-width: 700px) {
    .sched-row[b-x7vbpyldnd] {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
    .sched-when[b-x7vbpyldnd] {
        flex-direction: row;
        align-items: baseline;
        gap: 0.8rem;
        border-right: none;
        border-bottom: 1.5px solid var(--ink);
        padding-right: 0;
        padding-bottom: 0.7rem;
    }
    .sched-row.next .sched-when[b-x7vbpyldnd] { border-bottom-color: var(--hairline-dark); }
    .sched-tags[b-x7vbpyldnd] { justify-content: flex-start; }
}
/* /Components/Prayer/PrayerHeroSection.razor.rz.scp.css */
/* Prayer hero — quiet ruled masthead; the scripture carries it */

.prayer-hero[b-wt3wcgxfw3] {
    border-bottom: var(--bw) solid var(--ink);
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0 3.2rem,
            var(--hairline) 3.2rem calc(3.2rem + 1px)
        );
}

.hero-inner[b-wt3wcgxfw3] {
    padding-block: clamp(3.2rem, 9vh, 6rem);
    max-width: 48rem;
    text-align: center;
}

.hero-inner .kicker[b-wt3wcgxfw3] { justify-content: center; }

.hero-title[b-wt3wcgxfw3] {
    font-size: clamp(2.2rem, 5.6vw, 3.9rem);
    margin-top: 1.1rem;
}

.hero-scripture[b-wt3wcgxfw3] {
    margin-top: 2rem;
}

.hero-scripture .serif-grad[b-wt3wcgxfw3] {
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);
    line-height: 1.45;
}

.hero-cite[b-wt3wcgxfw3] {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    color: var(--ink-low);
}

.hero-actions[b-wt3wcgxfw3] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.2rem;
}

@media (max-width: 560px) {
    .hero-actions .btn[b-wt3wcgxfw3] { width: 100%; }
}
/* /Components/Prayer/PrayerMinistrySection.razor.rz.scp.css */
/* Prayer ministry — numbered ledger rows */

.ministry-list[b-x110swyxeu] {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ministry-row[b-x110swyxeu] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.8rem);
    padding: 1.2rem 1.3rem;
}

.row-no[b-x110swyxeu] { font-size: 0.95rem; }

.row-body h3[b-x110swyxeu] {
    font-size: 1.05rem;
    text-transform: uppercase;
}

.row-body p[b-x110swyxeu] {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: var(--ink-mid);
    max-width: 46rem;
}

.row-tag[b-x110swyxeu] { flex: none; }

@media (max-width: 700px) {
    .ministry-row[b-x110swyxeu] { grid-template-columns: auto 1fr; }
    .row-tag[b-x110swyxeu] { grid-column: 2; justify-self: start; }
}
/* /Components/Prayer/PrayerResourcesSection.razor.rz.scp.css */
/* Prayer resources — icon-plated rows, stamped "Soon" */

.resources-section[b-1a4y359pvz] { background: var(--paper-deep); }

.resource-list[b-1a4y359pvz] {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

@media (max-width: 860px) {
    .resource-list[b-1a4y359pvz] { grid-template-columns: 1fr; }
}

.resource-row[b-1a4y359pvz] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 1.1rem;
    padding: 1.2rem 1.3rem;
}

.row-icon[b-1a4y359pvz] {
    width: 2.6rem;
    height: 2.6rem;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: var(--bw) solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    font-size: 1rem;
    color: var(--ink);
    background: var(--amber);
}

/* plate rotation — keeps the page from going monotone */
.row-icon--coral[b-1a4y359pvz] { background: var(--signal); color: var(--on-dark); }
.row-icon--gold[b-1a4y359pvz]  { background: var(--amber-soft); }
.row-icon--sky[b-1a4y359pvz]   { background: var(--olive); color: var(--on-dark); }

.row-body h3[b-1a4y359pvz] {
    font-size: 0.98rem;
    text-transform: uppercase;
}

.row-body p[b-1a4y359pvz] {
    margin-top: 0.4rem;
    font-size: 0.87rem;
    color: var(--ink-mid);
}

.row-status[b-1a4y359pvz] {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.resources-note[b-1a4y359pvz] {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-low);
}

.resources-note i[b-1a4y359pvz] { color: var(--amber-deep); }
/* /Components/Prayer/PrayerScheduleSection.razor.rz.scp.css */
/* Prayer schedule — listing tiles; Sabbath slot flips amber */

.slot-list[b-ctuetyesuw] {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

@media (max-width: 800px) {
    .slot-list[b-ctuetyesuw] { grid-template-columns: 1fr; }
}

.slot[b-ctuetyesuw] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.1rem;
    padding: 1.1rem 1.2rem;
}

.slot-when[b-ctuetyesuw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1.5px solid var(--ink);
    background: var(--paper);
    padding: 0.45em 0.7em;
    white-space: nowrap;
}

.slot-when i[b-ctuetyesuw] { color: var(--amber-deep); }

.slot-body h3[b-ctuetyesuw] {
    font-size: 0.98rem;
    text-transform: uppercase;
}

.slot-body p[b-ctuetyesuw] {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--ink-mid);
}

.slot-tag[b-ctuetyesuw] { flex: none; }

/* the Sabbath tile is the amber block */
.slot.sabbath[b-ctuetyesuw] { background: var(--amber); }

.slot.sabbath .slot-when[b-ctuetyesuw] { background: var(--card); }

.slot.sabbath .slot-body p[b-ctuetyesuw] { color: rgba(24, 16, 8, 0.72); }

.slot.sabbath .slot-tag[b-ctuetyesuw] { background: var(--ink); color: var(--amber); }

@media (max-width: 520px) {
    .slot[b-ctuetyesuw] { grid-template-columns: 1fr; align-items: start; }
    .slot-when[b-ctuetyesuw] { justify-self: start; }
    .slot-tag[b-ctuetyesuw] { justify-self: start; }
}
/* /Components/Prayer/PrayerTestimonialsSection.razor.rz.scp.css */
/* Prayer testimonies — letters to the station */

.quote-grid[b-aa6bn2cfbd] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

@media (max-width: 980px) { .quote-grid[b-aa6bn2cfbd] { grid-template-columns: 1fr; } }

.quote-card[b-aa6bn2cfbd] {
    position: relative;
    padding: 1.5rem 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
}

.quote-mark[b-aa6bn2cfbd] {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3rem;
    line-height: 0.6;
    color: var(--amber);
    -webkit-text-stroke: 1px var(--ink);
}

.quote-card p[b-aa6bn2cfbd] {
    margin-top: 0.9rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.55;
    flex: 1;
}

.quote-footer[b-aa6bn2cfbd] {
    margin-top: 1.3rem;
    padding-top: 0.9rem;
    border-top: 1.5px solid var(--ink);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.quote-name[b-aa6bn2cfbd] {
    font-style: normal;
    font-weight: 700;
    font-size: 0.92rem;
}

.quote-role[b-aa6bn2cfbd] {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber-ink);
}
/* /Pages/Programs.razor.rz.scp.css */
/* ============================================================
   PROGRAMS — "BROADCAST BLOCK" PROGRAMME GUIDE
   A printed TV guide: ruled masthead, sticky block-tab filter
   rail, numbered listing rows with art tiles, and a NO SIGNAL
   empty state. Featured rows carry the amber edge.
   ============================================================ */

/* ---------- Hero ---------- */

.prog-hero[b-0ooyh2jaw0] {
    border-bottom: var(--bw) solid var(--ink);
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0 3.2rem,
            var(--hairline) 3.2rem calc(3.2rem + 1px)
        );
}

.prog-hero-grid[b-0ooyh2jaw0] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    padding-block: clamp(3.2rem, 8vh, 5.5rem);
}

@media (max-width: 900px) {
    .prog-hero-grid[b-0ooyh2jaw0] { grid-template-columns: 1fr; }
}

.prog-hero-headline[b-0ooyh2jaw0] {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: var(--track-tight);
    margin-top: 1.1rem;
}

.prog-hero-lede[b-0ooyh2jaw0] {
    margin-top: 1.3rem;
    color: var(--ink-mid);
    font-size: 1.02rem;
    max-width: 33rem;
}

/* ---------- Issue box: this week's guide, at a glance ---------- */

.prog-issue[b-0ooyh2jaw0] {
    width: 100%;
    max-width: 24rem;
    justify-self: end;
    background: var(--card);
    border: var(--bw) solid var(--ink);
    box-shadow: var(--drop-lg);
}

@media (max-width: 900px) {
    .prog-issue[b-0ooyh2jaw0] { justify-self: start; }
}

.prog-issue-head[b-0ooyh2jaw0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    background: var(--amber);
    border-bottom: var(--bw) solid var(--ink);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.prog-issue-no[b-0ooyh2jaw0] {
    background: var(--ink);
    color: var(--amber);
    padding: 0.2em 0.5em;
    letter-spacing: 0.12em;
}

.prog-issue-rows div[b-0ooyh2jaw0] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.68rem 1rem;
}

.prog-issue-rows div + div[b-0ooyh2jaw0] { border-top: 1px solid var(--hairline); }

.prog-issue-rows dt[b-0ooyh2jaw0] {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-low);
}

.prog-issue-rows dd[b-0ooyh2jaw0] {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Filter rail ---------- */

.prog-filters[b-0ooyh2jaw0] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper);
    border-bottom: var(--bw) solid var(--ink);
    padding-block: 0.8rem;
}

.prog-tabs[b-0ooyh2jaw0] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.prog-tab[b-0ooyh2jaw0] {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--card);
    border: 1.5px solid var(--ink);
    padding: 0.5em 0.9em;
    cursor: pointer;
    transition: background var(--t-fast) linear,
                transform var(--t-fast) var(--ease-snap),
                box-shadow var(--t-fast) var(--ease-snap);
}

.prog-tab:hover[b-0ooyh2jaw0] {
    background: var(--amber-wash);
    transform: translate(-1px, -1px);
    box-shadow: 2px 2px 0 var(--ink);
}

.prog-tab.active[b-0ooyh2jaw0] {
    background: var(--amber);
    box-shadow: 2px 2px 0 var(--ink);
}

.prog-tab-count[b-0ooyh2jaw0] {
    font-size: 0.62rem;
    background: var(--ink);
    color: var(--paper);
    padding: 0.15em 0.45em;
    line-height: 1.3;
}

.prog-tab.active .prog-tab-count[b-0ooyh2jaw0] { background: var(--ink); }

/* ---------- Listing rows ---------- */

.prog-list[b-0ooyh2jaw0] {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.prog-row[b-0ooyh2jaw0] {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: clamp(1rem, 2.5vw, 1.8rem);
    align-items: center;
    background: var(--card);
    border: var(--bw) solid var(--ink);
    box-shadow: var(--drop);
    padding: 1.2rem clamp(1rem, 2.5vw, 1.6rem);
    transition: transform var(--t-fast) var(--ease-snap),
                box-shadow var(--t-fast) var(--ease-snap);
}

.prog-row:hover[b-0ooyh2jaw0] {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

/* featured rows carry the amber edge */
.prog-row--featured[b-0ooyh2jaw0] {
    border-left: 10px solid var(--amber);
}

.prog-row-no[b-0ooyh2jaw0] {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.6vw, 1.7rem);
    color: var(--ink-low);
}

.prog-row:hover .prog-row-no[b-0ooyh2jaw0] { color: var(--amber-deep); }

/* featured entries carry a printers' star on their number */
.prog-row-star[b-0ooyh2jaw0] {
    font-size: 0.45em;
    color: var(--amber-deep);
    vertical-align: super;
    margin-left: 0.35em;
}

.prog-row-art[b-0ooyh2jaw0] {
    width: clamp(4.6rem, 9vw, 6rem);
    aspect-ratio: 1;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-deep);
    border: 1.5px solid var(--ink);
    overflow: hidden;
}

.prog-row-img[b-0ooyh2jaw0] {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.prog-row-initials[b-0ooyh2jaw0] {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.prog-row-tags[b-0ooyh2jaw0] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
}

.prog-row-title[b-0ooyh2jaw0] {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    text-transform: uppercase;
    line-height: 1.15;
}

.prog-row-desc[b-0ooyh2jaw0] {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prog-row-side[b-0ooyh2jaw0] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.9rem;
    align-self: stretch;
    justify-content: space-between;
    padding-block: 0.2rem;
}

.prog-row-meta[b-0ooyh2jaw0] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
}

.prog-meta[b-0ooyh2jaw0] {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-low);
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    white-space: nowrap;
}

.prog-meta i[b-0ooyh2jaw0] { color: var(--amber-deep); }

.prog-row-go[b-0ooyh2jaw0] {
    width: 2.3rem;
    height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    text-decoration: none;
    transition: background var(--t-fast) linear,
                transform var(--t-fast) var(--ease-snap);
}

.prog-row:hover .prog-row-go[b-0ooyh2jaw0] {
    background: var(--amber);
    transform: translate(1px, 0);
}

@media (max-width: 760px) {
    .prog-row[b-0ooyh2jaw0] {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "art body"
            "side side";
        align-items: start;
    }
    .prog-row-no[b-0ooyh2jaw0] { display: none; }
    .prog-row-art[b-0ooyh2jaw0] { grid-area: art; }
    .prog-row-body[b-0ooyh2jaw0] { grid-area: body; }
    .prog-row-side[b-0ooyh2jaw0] {
        grid-area: side;
        flex-direction: row;
        align-items: center;
        border-top: 1px solid var(--hairline);
        padding-top: 0.8rem;
    }
    .prog-row-meta[b-0ooyh2jaw0] { flex-direction: row; gap: 1rem; }
}

/* ---------- Foot ---------- */

.prog-foot[b-0ooyh2jaw0] {
    margin-top: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.prog-note[b-0ooyh2jaw0] {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-low);
}

.prog-note a[b-0ooyh2jaw0] {
    color: var(--ink);
    font-weight: 700;
    text-decoration-color: var(--amber);
    text-decoration-thickness: 2px;
}

.prog-load-count[b-0ooyh2jaw0] {
    background: var(--ink);
    color: var(--paper);
    font-size: 0.62rem;
    padding: 0.2em 0.5em;
}

/* ---------- Empty state: NO SIGNAL ---------- */

.prog-empty[b-0ooyh2jaw0] {
    text-align: center;
    background: var(--card);
    border: var(--bw) solid var(--ink);
    box-shadow: var(--drop);
    padding: clamp(2.5rem, 7vw, 4.5rem) 1.5rem;
}

.prog-empty-signal[b-0ooyh2jaw0] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    letter-spacing: 0.08em;
    background: var(--ink);
    color: var(--amber);
    padding: 0.2em 0.5em;
    animation: tally-blink 1.4s steps(2, jump-none) infinite;
}

.prog-empty-line[b-0ooyh2jaw0] {
    margin-top: 1.4rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.prog-empty-sub[b-0ooyh2jaw0] {
    margin-top: 0.4rem;
    margin-bottom: 1.6rem;
    color: var(--ink-mid);
    font-size: 0.92rem;
}
