/* ============================================================
   LiveRadio.css
   ============================================================ */

/* ── NOW STREAMING ── */
.lr-now-streaming {
    max-width: 1500px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.lr-now-label {
    text-align: center;
    font-size: 1.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #888;
    text-transform: uppercase;
    padding: 18px 0 10px;
}

.lr-hero { position: relative; border-radius: 6px; overflow: hidden; background: #111; }

.lr-hero-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.lr-hero-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.lr-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.lr-hero-play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.lr-hero-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 0 0;
    gap: 16px;
}

.lr-hero-left { flex: 1; }

.lr-hero-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.lr-hero-desc {
    font-size: 1.5rem;
    color: #666;
    line-height: 0.55;
}

.lr-online-badge {
    display: inline-block;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    color: #c0392b;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    white-space: nowrap;
}

.lr-no-stream {
    text-align: center;
    padding: 60px;
    color: #aaa;
    font-size: 2rem;
}

/* ── TABS ── */
.lr-tabs-section {
    max-width: 1500px;
    margin: 0 auto 40px;
    padding: 0 20px;
/*    border-top: 1px solid #e8e8e8;*/
}

.lr-tab-bar {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 0;
}

.lr-tab {
    padding: 14px 22px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}
.lr-tab:hover { color: #c0392b; }
.lr-tab-active {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

.lr-tab-panel { padding: 20px 0; }

.lr-tab-empty {
    color: #aaa;
    font-size: 1.88rem;
    padding: 20px 0;
}

/* Upcoming rows */
.lr-upcoming-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lr-upcoming-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    flex-shrink: 0;
}

.lr-up-month {
    font-size: 2rem;
    color: #888;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-up-day {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.lr-upcoming-info {
    flex: 1;
    min-width: 0;
}

.lr-upcoming-info h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.35;
}

.lr-upcoming-info p {
    font-size: 2rem;
    color: #777;
    line-height: 1.5;
}

.lr-upcoming-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 1.78rem;
    color: #888;
    min-width: 140px;
    text-align: right;
    flex-shrink: 0;
}

.lr-meta-link {
    color: #c0392b;
    font-weight: 600;
    cursor: pointer;
}

/* Schedule rows */
.lr-schedule-row {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.lr-schedule-time {
    font-size: 1.88rem;
    font-weight: 700;
    color: #555;
    min-width: 70px;
    flex-shrink: 0;
}

.lr-schedule-info h4 {
    font-size: 1.92rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.lr-schedule-info p {
    font-size: 2rem;
    color: #888;
}

/* ── LISTEN ANYTIME ── */
.lr-listen-anytime {
    max-width: 1500px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.lr-listen-header {
    text-align: center;
    padding: 40px 0 30px;
/*    border-top: 1px solid #e8e8e8;*/
}

.lr-missed-label {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lr-listen-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.lr-listen-sub {
    font-size: 1.88rem;
    color: #888;
    max-width: 1500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Archive layout: sidebar + cards */
.lr-archive-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: start;
}

/* Sidebar */
.lr-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background: #fafafa;
}

.lr-filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lr-filter-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
}

.lr-filter-input {
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1.25rem;
    color: #333;
    width: 100%;
}

.lr-filter-input:focus { border-color: #c0392b; outline: none; }

.lr-clear-btn {
    background: none;
    border: none;
    color: #c0392b;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: underline;
    text-align: left;
    padding: 0;
}

.lr-apply-btn {
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 9px 14px;
    font-size: 1.82rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.lr-apply-btn:hover { background: #962d22; }

/* Cards area */
.lr-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each archive card — horizontal layout */
.lr-archive-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lr-archive-thumb {
    width: 140px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    background: #ddd;
}

.lr-archive-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.lr-archive-card:hover .lr-archive-thumb img { transform: scale(1.05); }

.lr-archive-info { flex: 1; min-width: 0; }

.lr-archive-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 5px;
    line-height: 1.35;
    text-decoration: none;
}
.lr-archive-title:hover { color: #c0392b; }

.lr-archive-desc {
    font-size: 1.5rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 6px;
}

.lr-archive-meta {
    font-size: 1.75rem;
    color: #aaa;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.lr-badge {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 2px;
    font-size: 1.5rem;
    font-weight: 600;
}
.lr-badge-video { background: #ffeaea; color: #c0392b; }
.lr-badge-audio { background: #eaf5ea; color: #2e7d32; }

/* Responsive */
@media (max-width: 768px) {
    .lr-archive-layout { grid-template-columns: 1fr; }
    .lr-upcoming-meta  { display: none; }
    .lr-hero-img       { height: 220px; }
    .lr-listen-header h2 { font-size: 2rem; }
    .lr-archive-thumb  { width: 100px; height: 66px; }
}
