/* =====================================================
   Beit Aveinu Global Theme
   Cleaned: 07-MAY-2026
   Dark navy + royal blue + gold
===================================================== */

:root {
    --navy: #07182d;
    --navy-2: #0b2340;
    --blue: #0f4fb8;
    --blue-2: #123a85;
    --gold: #d7ad4b;
    --cream: #f6f2e9;
    --paper: #f7f7f8;
    --ink: #14213d;
    --muted: #68758a;
    --line: #dfe5ef;
    --shadow: 0 18px 45px rgba(7,24,45,.16);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg,#e8edf5,#f9fafc 55%,#e5ebf6);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   SITE SHELL + SIDEBAR
===================================================== */

.site-shell {
    display: grid;
    grid-template-columns: 325px minmax(0,1fr);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: auto;
    background: linear-gradient(180deg,#081b31,#061426 72%,#07182d);
    color: #fff;
    padding: 14px;
    border-right: 1px solid rgba(255,255,255,.08);
    box-shadow: 8px 0 30px rgba(4,15,30,.25);
    z-index: 10;
}

.brand {
    display: block;
    text-align: center;
    margin: 0 0 18px;
}

.brand img {
    width: 200px;
    max-width: 100%;
    border-radius: 8px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}

.side-nav {
    display: grid;
    gap: 5px;
}

.side-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border-radius: 9px;
    color: #dce7f7;
    text-transform: uppercase;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em;
    border: 1px solid transparent;
    transition: .2s ease;
}

.side-nav a:hover,
.side-nav a.active {
    background: linear-gradient(90deg,#0e52c8,#174db0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(14,82,200,.28);
}

.side-nav span {
    width: 24px;
    text-align: center;
    opacity: .95;
}

.side-nav em {
    margin-left: auto;
    background: #0a58d6;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: .65rem;
    font-style: normal;
}

.ai-card-mini {
    margin: 20px 0 15px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
}

.ai-card-mini strong {
    display: block;
    text-transform: uppercase;
    font-size: .78rem;
}

.ai-card-mini small {
    display: block;
    color: #aebcd0;
}

.ai-card-mini a {
    grid-column: 1 / -1;
    background: #071324;
    border: 1px solid rgba(215,173,75,.3);
    border-radius: 9px;
    text-align: center;
    padding: 9px;
    color: #fff;
    font-weight: 700;
}

.ai-star {
    color: var(--gold);
    font-size: 1.5rem;
}

.socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #0d4db8;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(13,77,184,.35);
}

/* =====================================================
   MAIN CONTENT + TOP BAR
===================================================== */

.main-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.topbar {
    height: 76px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 5;
}

.search {
    flex: 1;
    max-width: 520px;
    display: flex;
    align-items: left;
    background: #f2f5fa;
    border: 1px solid #e2e8f2;
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
}

.search input {
    border: 0;
    background: transparent;
    outline: 0;
    flex: 1;
    min-width: 120px;
}

.search button {
    border: 0;
    background: transparent;
    color: var(--blue);
    font-size: 1.3rem;
}

.top-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.hebrew-toggle {
    font-weight: 800;
    color: var(--blue-2);
}

.outline-btn,
.solid-btn {
    border-radius: 12px;
    padding: 11px 16px;
    text-transform: uppercase;
    font-size: .82rem;
    font-weight: 800;
    border: 1px solid var(--blue-2);
}

.solid-btn {
    background: linear-gradient(90deg,#0d4db8,#082e82);
    color: #fff;
}

.outline-btn {
    background: #fff;
    color: var(--blue-2);
}

/* =====================================================
   MAIN CONTENT GRID
===================================================== */

.content-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 18px;
    align-items: start;
    padding: 18px;
}

.center-column {
    min-width: 0;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 0 0 0 34px;
    padding: 70px 0;
    background: url('/beitaveinu_org2/images/hero/hero.png') center center / cover no-repeat;
    box-shadow: var(--shadow);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.25),
        rgba(0,0,0,.4)
    );
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -55px;
    height: 110px;
    background: #f7f7f8;
    border-radius: 50% 50% 0 0 / 80% 80% 0 0;
    border-top: 9px solid #0c4dad;
    box-shadow: 0 -7px 18px rgba(0,0,0,.12);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 640px;
    padding-left: 40px;
    transform: translateY(-40px);
    text-shadow: 0 4px 18px rgba(0,0,0,.7);
}

.eyebrow {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    opacity: .9;
    font-weight: 700;
    margin: 0;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin: 5px 0;
    line-height: .95;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.hero h2 {
    font-family: "Noto Sans Hebrew", sans-serif;
    font-size: 30px;
    margin: 10px 0 18px;
    direction: rtl;
    text-align: left;
    display: inline-block;
    transform: translateX(130px);
}

.hero p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 26px;
    background: linear-gradient(90deg,#0d5ce0,#0b3b9a);
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

.verse-card {
    position: absolute;
    top: 90px;
    right: 20px;
    width: 260px;
    background: rgba(8,18,32,.75);
    color: #fff;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.verse-card strong {
    font-family: "Noto Sans Hebrew", sans-serif;
    font-size: 22px;
    line-height: 1.35;
    display: block;
}

.verse-card span {
    display: block;
    font-size: 13px;
    color: var(--gold);
    margin: 10px 0 14px;
}

.verse-card small {
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

/* =====================================================
   QUICK STRIP
===================================================== */

.quick-strip {
    position: relative;
    z-index: 2;
    margin-top: -10px;
    background: #f8f9fb;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(7,24,45,.08);
}

.quick-strip a {
    padding: 24px 10px;
    text-align: center;
    border-right: 1px solid #e7ebf3;
    color: var(--blue-2);
}

.quick-strip span {
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #edf3ff;
    color: #0d4db8;
    font-weight: 900;
}

.quick-strip strong {
    display: block;
    text-transform: uppercase;
    font-size: .78rem;
}

.quick-strip small {
    display: block;
    margin-top: 3px;
    color: #5e6780;
    font-family: "Noto Sans Hebrew";
}

/* =====================================================
   PANELS + LESSONS
===================================================== */

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(7,24,45,.07);
}

.dashboard-row {
    display: grid;
    grid-template-columns: 1.45fr .85fr;
    gap: 18px;
    padding: 18px;
}

.panel-head,
.rail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.panel-head {
    padding: 16px 18px 8px;
}

.panel h3,
.rail-card h3 {
    margin: 0;
    color: #123a85;
    text-transform: uppercase;
    font-size: 1rem;
}

.panel-head a,
.rail-head a {
    color: #123a85;
    text-transform: uppercase;
    font-weight: 800;
    font-size: .78rem;
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    padding: 10px 18px 18px;
}

.lesson-card {
    min-width: 0;
}

.thumb,
.feature-thumb {
    height: 115px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg,#263b4d,#d19a4b);
    position: relative;
}

.thumb::before,
.feature-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 22%,rgba(255,255,255,.45),transparent 18%),linear-gradient(0deg,rgba(0,0,0,.38),transparent);
}

.thumb button,
.feature-thumb button {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.7);
    background: rgba(8,24,45,.55);
    color: white;
}

.study {
    background: linear-gradient(135deg,#513522,#d7ad4b);
}

.teaching {
    background: linear-gradient(135deg,#203a46,#c69043);
}

.gate {
    background: linear-gradient(135deg,#2f2118,#b97a3e);
}

.lesson-card h4,
.featured-panel h4 {
    margin: 10px 0 4px;
    color: #0d3f9f;
    font-size: .94rem;
}

.lesson-card p,
.featured-panel p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
}

.lesson-card small {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    color: #6c778b;
    font-size: .75rem;
}

.featured-panel {
    padding: 0 0 15px;
}

.feature-thumb {
    height: 165px;
    margin: 10px 18px;
    background: linear-gradient(135deg,#407aa2,#e3b16e);
}

.featured-panel h4,
.featured-panel p,
.watch-row {
    margin-left: 18px;
    margin-right: 18px;
}

.watch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}

.watch-row a {
    border: 1px solid #123a85;
    color: #123a85;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .75rem;
}

/* =====================================================
   CTA STRIP
===================================================== */

.cta-strip {
    margin: 0 18px 10px;
    background: linear-gradient(90deg,#08224b,#0b2e74 48%,#081a31);
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-radius: 11px;
    overflow: hidden;
    color: white;
    box-shadow: var(--shadow);
}

.cta-strip a {
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.cta-strip span {
    grid-row: 1 / 4;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(215,173,75,.45);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 1.55rem;
}

.cta-strip b {
    text-transform: uppercase;
}

.cta-strip small {
    color: #d7e1f1;
    line-height: 1.4;
}

.cta-strip em {
    color: #fff;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 800;
    font-size: .75rem;
    margin-top: 6px;
}

/* =====================================================
   RIGHT RAIL + CARDS
===================================================== */

.right-rail {
    padding-top: 0;
    padding-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.right-rail > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.rail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: 0 10px 28px rgba(7,24,45,.08);
    padding: 18px;
    margin-bottom: 0;
}

/* =====================================================
   LIVE STREAM CARD
===================================================== */

.live-media-card {
    overflow: hidden;
}

.live-media-image {
    display: block;
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(rgba(7,24,45,.20),rgba(7,24,45,.35)), url("/beitaveinu_org2/assets/images/live-stream-card.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 14px;
    
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e11d2e;
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 6px;
}

.live-play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #0b3fa5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.live-media-content h4 {
    margin: 0 0 5px;
    color: var(--blue-2);
    font-size: .95rem;
}

.live-media-content p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: .86rem;
}

.live-watch-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg,#0b63ce,#0745a8);
    color: #fff !important;
    text-align: center;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    font-size: .82rem;
}

/* =====================================================
   SHABBAT WIDGET
===================================================== */

.shabbat-card,
.shabbat-card * {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
}

.shabbat-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.shabbat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.shabbat-card h3,
.shabbat-card p,
.shabbat-row span,
.shabbat-row strong {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.shabbat-card p {
    color: var(--muted);
    font-size: .82rem;
}

.shabbat-card p span {
    float: right;
    color: var(--blue-2);
    font-family: "Noto Sans Hebrew";
}

.shabbat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.shabbat-row span,
.shabbat-row strong {
    min-width: 0;
}

.shabbat-row strong {
    text-align: right;
    flex-shrink: 1;
}

.shabbat-card dl {
    margin: 14px 0;
}

.shabbat-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 12px 0;
}

.shabbat-card dt {
    font-weight: 700;
}

.shabbat-card dd {
    margin: 0;
    color: #0f3c9b;
    font-weight: 800;
    font-size: 1.2rem;
}

.shabbat-card a {
    color: #123a85;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
}

.countdown-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-box {
    min-width: 58px;
    text-align: center;
}

.shabbat-card .torah-reading-row,
.shabbat-card .shabbat-row:last-of-type {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 18px;
}

.shabbat-card .torah-reading-row strong,
.shabbat-card .shabbat-row:last-of-type strong {
    text-align: right;
    white-space: normal !important;
}

.candles {
    font-size: 4.4rem;
    filter: drop-shadow(0 10px 12px rgba(0,0,0,.15));
}

/* =====================================================
   EVENTS + INSPIRATION + AI PANEL
===================================================== */

.events-card article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    margin-top: 18px;
}

.events-card time {
    text-align: center;
    text-transform: uppercase;
    color: #1c3155;
    font-weight: 800;
}

.events-card time b {
    display: block;
    color: #52637c;
    font-size: .65rem;
}

.events-card strong {
    display: block;
    color: #123a85;
}

.events-card small {
    color: #728097;
}

.inspiration-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#08265c,#071a33);
    color: #fff;
    border-color: #164d9b;
}

.inspiration-card h3 {
    color: #fff;
}

.inspiration-card p {
    font-size: 1rem;
    line-height: 1.5;
}

.inspiration-card small {
    color: #d7e1f1;
}

.inspiration-card span {
    position: absolute;
    right: 20px;
    bottom: 12px;
    font-size: 4rem;
    opacity: .22;
}

.ai-panel em {
    background: #0d4db8;
    color: #fff;
    border-radius: 7px;
    padding: 4px 8px;
    text-transform: uppercase;
    font-style: normal;
    font-size: .7rem;
}

.ai-panel p {
    background: #f1f4f8;
    padding: 13px;
    border-radius: 10px;
    font-size: .86rem;
}

.ai-panel a {
    display: block;
    color: #123a85;
    margin: 14px 0;
    font-size: .88rem;
}

.ai-panel form {
    display: flex;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 13px;
}

.ai-panel input {
    border: 0;
    outline: 0;
    flex: 1;
    min-width: 0;
}

.ai-panel button {
    border: 0;
    background: transparent;
    color: #0d4db8;
    font-size: 1.2rem;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #07182d;
    color: #dbe6f6;
    display: grid;
    grid-template-columns: 260px 1fr 1.4fr 170px;
    gap: 24px;
    padding: 20px 26px;
    align-items: center;
    font-size: .82rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    font-family: Cinzel, serif;
    font-size: 1.15rem;
}

.footer-brand img {
    width: 120px;
    height: auto;
    border-radius: 6px;
}

.footer b {
    color: #fff;
    text-transform: uppercase;
}

.footer p {
    margin: .35rem 0;
    color: #c8d5e7;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 980px) {
    .verse-card {
        position: relative;
        right: auto;
        top: auto;
        margin: 0 30px 70px 48px;
    }

    .hero-content {
        padding-bottom: 28px;
    }

    .dashboard-row {
        grid-template-columns: 1.45fr .85fr;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .site-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        height: auto;
    }

    .side-nav {
        grid-template-columns: repeat(2,1fr);
    }

    .topbar {
        top: 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .quick-strip {
        grid-template-columns: repeat(3,1fr);
    }

    .lesson-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cta-strip {
        grid-template-columns: 1fr;
    }

    .top-actions {
        display: none;
    }

    .right-rail {
        width: 100%;
        max-width: 100%;
    }

    .shabbat-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .shabbat-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shabbat-row strong {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 0 12px;
    }

    .hero {
        min-height: 460px;
    }

    .hero-content {
        padding: 48px 24px;
        transform: none;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero h2 {
        transform: none;
        text-align: left;
    }

    .verse-card {
        margin: 0 18px 60px;
    }

    .dashboard-row {
        padding: 12px;
        grid-template-columns: 1fr;
    }

    .lesson-grid {
        grid-template-columns: 1fr;
    }

    .quick-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .side-nav {
        grid-template-columns: 1fr;
    }

    .footer {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   WORSHIP ONLINE PAGE
===================================================== */

.worship-online-hero {
    background: linear-gradient(135deg,#08265c,#07182d);
    color: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(215,173,75,.35);
}

.worship-online-hero h1 {
    margin: 0 0 10px;
    color: #fff;
    text-transform: uppercase;
}

.worship-online-hero p {
    color: #dbe6f6;
    max-width: 760px;
}

.video-panel {
    margin-top: 18px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.live-status {
    display: inline-block;
    background: #e11d2e;
    color: #fff;
    font-weight: 900;
    font-size: .75rem;
    padding: 6px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* =====================================================
   WORSHIP ONLINE HERO
===================================================== */

.live-status-banner {
    display: inline-block;
    background: #d30000;
    color: white;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.live-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 16px;
    margin-top: 24px;
}

.live-info-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    padding: 18px;
    backdrop-filter: blur(6px);
}

.live-info-card h3 {
    margin-top: 0;
    color: #ffd977;
}

.live-info-card p {
    margin-bottom: 0;
}