/* PODCAST PAGE */

/* HERO */
.podcast-hero {
    background: linear-gradient(135deg, var(--donkergroen) 0%, #0d1a12 100%);
    padding: 64px 32px;
}

.podcast-hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: center;
}

.podcast-cover {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--donkergroen), #0a2018);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

.podcast-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.podcast-meta { color: var(--wit); }

.podcast-label {
    font-family: var(--kop);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--groen);
    margin: 0 0 12px;
}

.podcast-meta h1 {
    font-family: var(--display);
    font-size: 2.8rem;
    margin: 0 0 16px;
    line-height: 1.1;
}

.podcast-meta p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 24px;
}

.podcast-platforms {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-platform {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 24px;
    font-family: var(--kop);
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-platform:hover { opacity: 0.85; }

.btn-spotify { background: #1db954; color: #fff; }
.btn-apple { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); }

/* CONTENT LAYOUT */
.podcast-content { padding: 56px 0; }

.podcast-content-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.podcast-player h2 {
    font-family: var(--kop);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--donkergroen);
    margin: 0 0 24px;
}

/* EPISODES */
.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.episode-card {
    display: grid;
    grid-template-columns: 40px 56px 1fr 48px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: var(--wit);
    border: 1px solid #e8ece8;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.episode-card:hover { background: var(--lichtgroen); }

.episode-number {
    font-family: var(--kop);
    font-size: 20px;
    font-weight: 700;
    color: #ccc;
    text-align: center;
}

.episode-cover img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
}

.episode-info h3 {
    font-family: var(--kop);
    font-size: 14px;
    font-weight: 600;
    color: var(--donkergroen);
    margin: 0 0 4px;
}

.episode-info p {
    font-size: 13px;
    color: #666;
    margin: 0 0 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
}

.episode-play {
    background: var(--donkergroen);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--groen);
    transition: background 0.2s;
    flex-shrink: 0;
}

.episode-play:hover { background: var(--groen-donker); color: #fff; }

/* EMBED */
.episode-embed {
    display: none;
    grid-column: 1 / -1;
    padding-top: 8px;
}

.episode-embed iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

.episode-card.playing { background: var(--lichtgroen); border-color: var(--groen); }
.episode-embed.open { display: block; }
.episode-card.playing .episode-number { color: var(--groen); }

/* SIDEBAR */
.podcast-sidebar { position: sticky; top: 100px; }

.podcast-about,
.podcast-share {
    background: var(--lichtgroen);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.podcast-about h3,
.podcast-share h3 {
    font-family: var(--kop);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--donkergroen);
    margin: 0 0 12px;
}

.podcast-about p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px;
}

.presenter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.presenter-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.presenter-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.presenter-info h4 {
    font-family: var(--kop);
    font-size: 14px;
    font-weight: 600;
    color: var(--donkergroen);
    margin: 0 0 2px;
}

.presenter-info p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.share-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--wit);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate);
    transition: background 0.15s;
}

.share-link:hover { background: var(--lichtgroen2); color: var(--donkergroen); }

/* MOBIEL */
@media (max-width: 900px) {
    .podcast-content-inner { grid-template-columns: 1fr; }
    .podcast-sidebar { position: static; }
}

@media (max-width: 600px) {
    .podcast-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .podcast-cover { display: flex; justify-content: center; }
    .podcast-meta h1 { font-size: 2rem; }
    .episode-card { grid-template-columns: 32px 48px 1fr 40px; gap: 10px; }
}
