/* Spotify Podcast Embed — Frontend Styles */

/* ── Single embed ───────────────────────────────── */
.spoty-embed-wrapper {
    display: block;
    max-width: 100%;
    margin: 1em 0;
}

.spoty-embed-wrapper iframe {
    display: block;
    max-width: 100%;
    border: none;
    border-radius: 12px;
}

/* ── Show layout (featured + episode list) ──────── */
.spoty-show-wrapper {
    display: block;
    max-width: 100%;
    margin: 1em 0;
    box-sizing: border-box;
}

/* Section label */
.spoty-section-label {
    margin: 0 0 10px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spoty-theme-dark .spoty-section-label {
    color: #b3b3b3;
}

.spoty-theme-light .spoty-section-label {
    color: #6a6a6a;
}

/* Featured episode */
.spoty-featured-episode {
    margin-bottom: 24px;
}

.spoty-featured-episode iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 12px;
}

/* Past episodes list */
.spoty-episodes-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spoty-episode-item iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 12px;
}

/* ── Latest episode widget (footer / sidebar) ───── */
.spoty-latest-widget {
    display: block;
    max-width: 100%;
    box-sizing: border-box;
}

.spoty-latest-widget iframe {
    display: block;
    width: 100%;
    border: none;
    border-radius: 12px;
}

.spoty-all-episodes-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
}

.spoty-theme-dark .spoty-all-episodes-link {
    color: #1DB954;
}

.spoty-theme-dark .spoty-all-episodes-link:hover {
    color: #1ed760;
}

.spoty-theme-light .spoty-all-episodes-link {
    color: #1DB954;
}

.spoty-theme-light .spoty-all-episodes-link:hover {
    color: #158a3e;
}
