/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION 4: PODCAST SHOWCASE — Shree Studio
   Premium podcast productions showcase
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.podcast-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
}

.podcast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(229, 9, 20, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.podcast-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-height: 85vh;
}

/* Header */
.podcast-header {
    text-align: center;
}

.podcast-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 50px;
    color: #e50914;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.podcast-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
}

/* Featured Podcast */
.podcast-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    flex: 1;
    min-height: 0;
}

.podcast-featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.podcast-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.podcast-featured-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.podcast-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4), transparent);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.podcast-card-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e50914;
}

.podcast-card-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.podcast-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Play Button */
.podcast-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 70px;
    height: 70px;
    background: rgba(229, 9, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.podcast-play-btn i {
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
}

.podcast-featured-card:hover .podcast-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Episode Grid */
.podcast-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.podcast-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.podcast-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(229, 9, 20, 0.2);
    transform: translateX(6px);
}

.podcast-card-thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.podcast-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-card-thumb::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.podcast-card:hover .podcast-card-thumb::after {
    opacity: 1;
}

.podcast-card-info {
    flex: 1;
}

.podcast-card-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
}

.podcast-card-info p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.podcast-card-duration {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* Scroll Reveal */
/* Scroll Reveal */
.podcast-section [data-animate]{opacity:0;transition:opacity .8s cubic-bezier(.4,0,.2,1),transform .8s cubic-bezier(.4,0,.2,1);will-change:opacity,transform}
.podcast-section [data-animate].is-visible{opacity:1;transform:none!important}
.podcast-section [data-animate="fade-up"]{transform:translateY(50px)}
.podcast-section [data-delay="200"]{transition-delay:.2s}

/* Responsive */
@media (max-width: 1024px) {
    .podcast-featured {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .podcast-featured-card {
        max-height: 30vh;
    }
    .podcast-container {
        padding: 80px 20px 20px;
    }
    .podcast-grid {
        max-height: 30vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .podcast-card {
        padding: 10px;
        gap: 12px;
    }
    .podcast-card-thumb {
        width: 60px;
        height: 45px;
    }
}
