/* ─── PODCAST SECTION ────────────────────── */
#whatido-wp-root .podcast-section {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

#whatido-wp-root .podcast-marquee-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    opacity: 0.35;
    z-index: 1;
}

#whatido-wp-root .podcast-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
}

#whatido-wp-root .podcast-marquee-content {
    display: flex;
    gap: 16px;
    padding-right: 16px;
    width: max-content;
    animation-duration: 45s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

#whatido-wp-root .podcast-marquee--left .podcast-marquee-content {
    animation-name: marqueeLeft;
}

#whatido-wp-root .podcast-marquee--right .podcast-marquee-content {
    animation-name: marqueeRight;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

#whatido-wp-root .podcast-card {
    width: clamp(240px, 20vw, 320px);
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    transition: border-color 0.3s, filter 0.3s;
}

#whatido-wp-root .podcast-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.8);
    transition: filter 0.3s, transform 0.5s ease;
}

#whatido-wp-root .podcast-card:hover {
    border-color: rgba(96, 165, 250, 0.6);
}

#whatido-wp-root .podcast-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

#whatido-wp-root .podcast-section::before,
#whatido-wp-root .podcast-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: 2;
    pointer-events: none;
}

#whatido-wp-root .podcast-section::before {
    top: 0;
    background: linear-gradient(to bottom, #000, transparent);
}

#whatido-wp-root .podcast-section::after {
    bottom: 0;
    background: linear-gradient(to top, #000, transparent);
}

#whatido-wp-root .podcast-overlay {
    position: relative;
    z-index: 9;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background: radial-gradient(circle closest-side, rgba(3, 7, 10, 0.9) 0%, rgba(3, 7, 10, 0.4) 100%);
    border-radius: 24px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

#whatido-wp-root .podcast-title-wrapper {
    margin-bottom: 24px;
}

#whatido-wp-root .podcast-badge {
    display: inline-block;
    background: #60a5fa;
    color: #000;
    font-weight: 900;
    font-size: clamp(20px, 3vw, 36px);
    padding: 4px 16px;
    text-transform: uppercase;
    letter-spacing: 0em;
    line-height: 1.2;
    margin-bottom: 8px;
}

#whatido-wp-root .podcast-title {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
}

#whatido-wp-root .podcast-desc {
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#whatido-wp-root .podcast-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    background: transparent;
    color: #60a5fa;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    border: 2px solid #60a5fa;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
}

#whatido-wp-root .podcast-cta:hover {
    background: #60a5fa;
    color: #000;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.4);
    transform: translateY(-2px);
}
    


/* backdrop-filter (hiệu ứng kính mờ) chỉ bật trên thiết bị có chuột/GPU mạnh;
   mobile/touch dùng nền bán trong suốt thường — nhìn gần như nhau, nhẹ hơn nhiều */
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
    #whatido-wp-root .podcast-overlay {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
}
