.podcast-section-wrapper {
    display: block;
}

.podcast-section {
    padding: 5rem 0;
    background: #122f4d;
}

.podcast-show-header {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.podcast-show-cover {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.podcast-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}

.podcast-show-info .h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.podcast-show-desc {
    max-width: 58ch;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

.podcast-spotify-btn {
    display: inline-flex;
    margin-top: 1rem;
    align-items: center;
    gap: 0.6rem;
    background: #1DB954;
    color: #fff;
    padding: 0.85rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.podcast-spotify-btn:hover {
    background: #1aa34a;
    color: #fff;
    transform: translateY(-1px);
}

.podcast-spotify-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/*
 * Episode-Grid-Styles – für spätere Nutzung mit RSS-Feed auskommentiert.
 *
 * .podcast-episodes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
 * .podcast-episode-card { border: 1px solid #122f4d; display: flex; flex-direction: column; }
 * .podcast-episode-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
 * .podcast-episode-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; gap: 0.5rem; }
 * .podcast-episode-date { font-size: 0.8rem; opacity: 0.6; }
 * .podcast-episode-title { font-size: 1rem !important; font-weight: 600; margin-bottom: 0; line-height: 1.4; }
 * .podcast-episode-subtitle { font-size: 0.9rem; opacity: 0.8; flex-grow: 1; margin-bottom: 0.25rem; }
 * .podcast-listen-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; color: #122f4d; text-decoration: none; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid rgba(18,47,77,0.15); }
 * .podcast-listen-btn:hover { opacity: 0.7; }
 * .podcast-listen-btn svg { width: 18px; height: 18px; }
 * @media (max-width: 991px) { .podcast-episodes-grid { grid-template-columns: repeat(2, 1fr); } }
 * @media (max-width: 600px) { .podcast-episodes-grid { grid-template-columns: 1fr; } }
 */

@media (max-width: 768px) {
    .podcast-show-header {
        gap: 2.5rem;
    }

    .podcast-show-cover {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .podcast-show-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .podcast-show-cover {
        width: 200px;
        height: 200px;
    }

    .podcast-show-desc {
        max-width: 100%;
    }
}
