/*=========================================
Podcasts
=========================================*/

.bilin-podcasts{

    padding:120px 0;

    background:#F8FBFD;

}

.podcasts-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.podcast-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.podcast-card:hover{

    transform:translateY(-8px);

}

.podcast-cover{

    height:220px;

    background:#0F8FB5;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:72px;

}

.podcast-content{

    padding:30px;

    text-align:center;

}

.podcast-content h3{

    color:#0F8FB5;

    margin-bottom:15px;

}

.podcast-content p{

    color:#666;

    line-height:2;

    margin-bottom:24px;

}

.podcast-btn{

    display:inline-block;

    padding:12px 26px;

    background:#F59E0B;

    color:#fff;

    border-radius:10px;

    text-decoration:none;

    transition:.3s;

}

.podcast-btn:hover{

    background:#D97706;

}

@media(max-width:992px){

.podcasts-grid{

grid-template-columns:1fr;

}

}