/* ==========================================================================
   Radio page — Reverie Daydream Radio.
   Video card + lightbox styles are in videos.css (also enqueued on this page).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Featured episode
   -------------------------------------------------------------------------- */

.reo-radio-featured {
    margin-bottom: 64px;
}

.reo-radio-featured__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    padding: 32px;
}

/* Live-dot + badge row */
.reo-radio-featured__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.reo-radio-featured__dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: reo-pulse 2s ease-in-out infinite;
}

@keyframes reo-pulse {
    0%,
    100% { opacity: 1; }
    50%  { opacity: 0.35; }
}

/* YouTube embed */
.reo-radio-featured__embed {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

.reo-radio-featured__embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
}

/* Text */
.reo-radio-featured__title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
    line-height: 1.2;
}

.reo-radio-featured__meta {
    font-size: 14px;
    color: var(--text-dim);
    margin: 0 0 12px;
}

.reo-radio-featured__collab {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.reo-radio-featured__collab a {
    color: var(--accent-light);
    text-decoration: none;
}

.reo-radio-featured__collab a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Archive heading
   -------------------------------------------------------------------------- */

.reo-radio-archive__heading {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 24px;
}
