/* ─────────────────────────────────────────────────────────────
   /canli — tüm canlı yayınların listesi
   Light + Dark uyumlu (og-theme.css değişkenleri).
   ─────────────────────────────────────────────────────────── */

.lbi-shell {
    max-width: 1116px;
    margin: 24px auto 64px;
    padding: 0 20px;
    color: var(--og-text-primary, #1a1a1a);
}

.lbi-head {
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--og-card-border, rgba(0,0,0,0.08));
}
.lbi-title {
    font-size: 32px;
    margin: 0 0 8px;
    font-weight: 700;
    color: var(--og-text-primary, #1a1a1a);
}
.lbi-sub {
    color: var(--og-text-secondary, #555);
    font-size: 15px;
    max-width: 720px;
    line-height: 1.55;
    margin: 0;
}

.lbi-empty {
    padding: 36px;
    border: 1px dashed var(--og-card-border, rgba(0,0,0,0.12));
    border-radius: 12px;
    text-align: center;
    color: var(--og-text-muted, #888);
}

.lbi-section {
    margin-bottom: 42px;
}
.lbi-section-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--og-section-title-color, #666);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lbi-section-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.lbi-section-dot--live {
    background: #d22;
    box-shadow: 0 0 10px rgba(210,34,34,0.55);
    animation: lbi-pulse 1.6s ease infinite;
}
.lbi-section-dot--pre { background: #f0b400; }
.lbi-section-dot--post { background: #7a7e85; }
@keyframes lbi-pulse {
    0%, 100% { opacity: 1; }
    55% { opacity: 0.35; }
}

.lbi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.lbi-card {
    display: flex;
    flex-direction: column;
    background: var(--og-card-bg, #fff);
    border: 1px solid var(--og-card-border, rgba(0,0,0,0.08));
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--og-text-primary, #1a1a1a);
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.lbi-card:hover {
    transform: translateY(-2px);
    border-color: var(--og-text-muted, #888);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    color: var(--og-text-primary, #1a1a1a);
}
.lbi-card--live { border-color: rgba(210,34,34,0.4); }
.lbi-card--live:hover { border-color: rgba(210,34,34,0.7); }

.lbi-card-cover {
    aspect-ratio: 16 / 9;
    background-color: var(--og-card-inner-bg, #e2e4e8);
    background-size: cover;
    background-position: center;
    position: relative;
}
.lbi-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
}
.lbi-card-badge--live { background: #d22; color: #fff; }
.lbi-card-badge--pre { background: #f0b400; color: #1a1a1a; }
.lbi-card-badge--post { background: rgba(20,20,20,0.78); color: #fff; }

.lbi-card-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: lbi-pulse 1.4s ease infinite;
}

.lbi-card-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lbi-card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: var(--og-text-primary, #1a1a1a);
}
.lbi-card-spot {
    font-size: 13.5px;
    color: var(--og-text-secondary, #555);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lbi-card-meta {
    margin-top: auto;
    padding-top: 8px;
    font-size: 12.5px;
    color: var(--og-text-muted, #888);
    border-top: 1px solid var(--og-card-border, rgba(0,0,0,0.06));
}

@media (max-width: 720px) {
    .lbi-title { font-size: 24px; }
    .lbi-grid { grid-template-columns: 1fr; }
    .lbi-section { margin-bottom: 32px; }
}
