.podcast-header {
    padding: 20px 20px 22px 20px;
    background: linear-gradient(160deg, #7A5C4F 0%, #4A3527 100%);
    border-radius: 0 0 28px 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(74, 53, 39, 0.2);
}
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.back-pill:hover { background: rgba(255, 255, 255, 0.22); }

.podcast-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 6px;
}
.podcast-header h1 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    margin-bottom: 4px;
}
.podcast-subhead {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
}

.section-block {
    padding: 0 20px 24px 20px;
}
.section-heading h2 {
    font-size: 15px;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 12px;
}
.section-heading h2 i {
    color: #7A5C4F;
    margin-right: 6px;
}

.show-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.show-chip {
    flex-shrink: 0;
    width: 130px;
    padding: 16px 14px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    text-align: center;
    cursor: pointer;
    transition: 0.15s;
}
.show-chip.is-active {
    border-color: #7A5C4F;
    background: rgba(122, 92, 79, 0.06);
}
.show-chip-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px auto;
    border-radius: 50%;
    background: linear-gradient(160deg, #7A5C4F, #4A3527);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.show-chip h4 {
    font-size: 12px;
    font-weight: 600;
    color: #2A2624;
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.episode-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    border-radius: 14px;
    padding: 12px 16px;
    cursor: pointer;
}
.episode-play {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F5F0EA;
    color: #7A5C4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: 0.15s;
}
.episode-item.is-playing .episode-play {
    background: #7A5C4F;
    color: #fff;
}
.episode-meta { flex: 1; min-width: 0; }
.episode-meta h4 {
    font-size: 14px;
    font-weight: 500;
    color: #2A2624;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.episode-meta p {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 300;
}
.episode-duration {
    font-size: 12px;
    color: #A09898;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .episode-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
