.podcast-carousel-section{
    border-radius:10px;
}
.podcast-carousel-wrapper{
    position:relative;
}
.podcast-carousel-viewport{
    position:relative;
    overflow:hidden;
    user-select:none;
}
.podcast-slides-container{
    display:flex;
    transition:transform 0.35s ease;
}
.podcast-slide{
    flex:0 0 80%;
    margin-top:10px;
    margin-bottom:10px;
    transition:opacity 0.2s ease;
    margin-right:10px;
}
.podcast-slide.active{
    opacity:1;
}
.podcast-slide-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    font-size:16px;
    border-radius:50%;
    border:none;
    background:none;
    color:#999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background 0.2s ease,transform 0.2s ease,opacity 0.2s ease;
    cursor:pointer;
    z-index:10;
    opacity:0.9;
}
.podcast-slide-arrow.prev{
    left:10px;
}
.podcast-slide-arrow.next{
    right:10px;
}
.podcast-card-main{
    border:1px solid rgba(0,0,0,.125);
    border-radius:5px;
    background:#fff;
    cursor:pointer;
}
.podcast-card{
    display:flex;
    gap:8px;
    padding:0px 10px 10px 10px;
    align-items:center;
}
.podcast-card-media{
    position:relative;
    width:100%;
    height:120px;
    /* border-radius:12px; */
    overflow:hidden;
    background:#e6f1fb;
    flex-shrink:0;
}
.podcast-card-img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.podcast-card-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#7a8da3;
}
.podcast-card-body{
    flex:1;
}
.podcast-card-title{
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:4px;
    color:#11253a;
    padding-top:6px;
    padding-left:10px;
}
.podcast-card-description{
    font-size:0.95rem;
    color:#4a5e78;
    margin-bottom:8px;
}
.podcast-card-action{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:12px;
}
.view-podcast-btn{
    padding:5px 15px;
    min-width:auto;
    background:#00a0d2;
    color:#fff;
    border-radius:4px;
    text-decoration:none;
    font-size:14px;
    transition:background 0.2s ease;
}
.view-podcast-btn:hover{
    background:#007ba3;
    color:#fff;
    text-decoration:none;
}
.podcast-carousel-controls{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}
.podcast-nav-btn{
    width:25px;
    height:25px;
    font-size:15px;
    border-radius:50%;
    border:none;
    background:#00a0d2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(0,160,210,0.25);
    transition:background 0.2s ease;
    cursor:pointer;
}
.podcast-nav-btn:hover{
    background:#007ba3;
    transform:scale(1.1);
}
.podcast-nav-btn:active{
    transform:scale(0.95);
}
.podcast-nav-btn:disabled{
    cursor:not-allowed;
    opacity:0.4;
}
.podcast-bullets{
    display:flex;
    gap:6px;
}
.podcast-bullet{
    width:8px;
    height:8px;
    border-radius:50%;
    border:none;
    background:#c7d8e2;
    padding:0;
    transition:background 0.2s ease,transform 0.2s ease;
    cursor:pointer;
}
.podcast-bullet.active{
    background:#00a0d2;
    transform:scale(1.2);
}
.podcast-see-all-link{
    margin-left:auto;
    margin-right:0px;
}
@media(max-width:768px){
    .podcast-card{
        flex-direction:column;
        text-align:center;
    }
    .podcast-card-media{
        width:100%;
        height:160px;
    }
    .podcast-card-action{
        justify-content:center;
    }
    .podcast-slide-arrow{
        display:none;
    }
    .podcast-carousel-controls{
        flex-wrap:wrap;
    }
}

