/* =========================================
   ROOT
========================================= */

:root{

    --primary:#1d4ab7;
    --secondary:#d62828;
    --accent:#f0be37;

    --dark:#121212;
    --body:#5f6368;

    --white:#ffffff;

    --section-bg:#faf8f3;
    --section-bg-dark:#f5f1ea;

}

/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;

    color:var(--dark);

    background:#fff;

    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    position:relative;
}

.container{
    max-width:1320px;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Playfair Display',serif;
    font-weight:700;
    line-height:1.1;
}

/* =========================
   NAVBAR
========================= */

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(255,255,255,.9);
    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(0,0,0,.05);
}

.navbar-custom{
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:60px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:2rem;

    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu a{
    color:var(--dark);

    font-size:.85rem;
    font-weight:600;

    letter-spacing:.08em;
    text-transform:uppercase;

    position:relative;
}

.nav-menu a::after{
    content:"";

    position:absolute;
    bottom:-8px;
    left:0;

    width:0;
    height:2px;

    background:var(--secondary);

    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:1rem;
}

.live-indicator{
    display:flex;
    align-items:center;
    gap:.5rem;

    font-size:.8rem;
    font-weight:700;

    color:var(--secondary);
}

.live-indicator span{
    width:10px;
    height:10px;

    border-radius:50%;
    background:var(--secondary);

    animation:pulse 1.5s infinite;
}

.listen-live-btn{
    position:relative;

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #d62828 0%,
        #1d4ab7 100%
    );

    color:#fff;

    text-decoration:none;

    font-size:1rem;

    box-shadow:
        0 10px 25px rgba(29,74,183,.25);

    transition:.3s ease;

    z-index:2;
}

.listen-live-btn:hover{
    transform:scale(1.08);
}

.listen-live-btn i{
    margin-left:3px;
    position:relative;
    z-index:5;
}

/* Wave 1 */

.listen-live-btn::before{
    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    border:2px solid rgba(29,74,183,.35);

    animation:radioWave 2s infinite;
}

/* Wave 2 */

.listen-live-btn::after{
    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    border:2px solid rgba(214,40,40,.25);

    animation:radioWave 2s infinite .8s;
}
@keyframes radioWave{

    0%{
        transform:scale(1);
        opacity:.8;
    }

    70%{
        opacity:.15;
    }

    100%{
        transform:scale(2.3);
        opacity:0;
    }

}

.menu-toggle{
    display:none;

    background:none;
    border:none;

    font-size:2rem;
    color:var(--dark);
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:1;
    }
    50%{
        transform:scale(1.5);
        opacity:.5;
    }
    100%{
        transform:scale(1);
        opacity:1;
    }
}



@media (max-width:991px){

    .nav-menu{
        display:none;
    }

    .listen-btn,
    .live-indicator{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .logo img{
        height:50px;
    }

}
@media(max-width:576px){

    .listen-live-btn{
        width:55px;
        height:55px;

        font-size:.85rem;
    }

    .listen-live-btn i{
        margin-left:2px;
    }

    .listen-live-btn::before,
    .listen-live-btn::after{
        border-width:1.5px;
    }

    @keyframes radioWave{

        0%{
            transform:scale(1);
            opacity:.7;
        }

        70%{
            opacity:.1;
        }

        100%{
            transform:scale(1.8);
            opacity:0;
        }

    }

}
/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu{
    position:fixed;
    inset:0;

    background:#faf8f3;

    z-index:99999;

    padding:2rem;

    display:flex;
    flex-direction:column;

    transform:translateX(100%);
    transition:.5s ease;

    overflow-y:auto;
}

.mobile-menu.active{
    transform:translateX(0);
}

/* Close */

.mobile-close{
    position:absolute;

    top:25px;
    right:25px;

    background:none;
    border:none;

    color:#111;

    font-size:1.2rem;

    cursor:pointer;
}

/* Brand */

.mobile-brand{
    margin-top:1rem;
    margin-bottom:3rem;
}

.mobile-brand img{
    width:130px;

    margin-bottom:.75rem;
}

.mobile-brand span{
    display:block;

    color:#777;

    font-size:.7rem;
    font-weight:600;

    letter-spacing:.2em;
    text-transform:uppercase;
}

/* Navigation */

.mobile-nav-links{
    list-style:none;

    padding:0;
    margin:0;
}

.mobile-nav-links li{
    margin-bottom:.75rem;
}

.mobile-nav-links a{
    display:inline-block;

    color:#111;

    font-size:clamp(2rem,7vw,2.75rem);
    font-weight:700;

    line-height:1.05;

    text-decoration:none;

    transition:.3s ease;
}

.mobile-nav-links a:hover{
    color:#b71c1c;

    transform:translateX(8px);
}

/* Bottom */

.mobile-menu-bottom{
    margin-top:auto;

    padding-top:2rem;

    border-top:1px solid rgba(0,0,0,.08);
}

/* Live */

.mobile-live{
    display:inline-flex;
    align-items:center;

    gap:.75rem;

    color:#111;

    text-decoration:none;

    font-weight:600;

    margin-bottom:1.5rem;
}

.live-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#d62828;

    animation:liveBlink 1.5s infinite;
}

@keyframes liveBlink{

    0%,100%{
        opacity:1;
    }

    50%{
        opacity:.3;
    }

}

/* Social */

.mobile-socials{
    display:flex;
    gap:.75rem;

    margin-bottom:1.5rem;
}

.mobile-socials a{
    width:42px;
    height:42px;

    border:1px solid rgba(0,0,0,.08);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111;

    transition:.3s ease;
}

.mobile-socials a:hover{
    background:#111;

    color:#fff;

    transform:translateY(-3px);
}

/* Footer */

.mobile-footer-text{
    color:#999;

    font-size:.75rem;

    letter-spacing:.12em;
    text-transform:uppercase;
}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:576px){

    .mobile-menu{
        padding:1.5rem;
    }

    .mobile-brand{
        margin-bottom:2.5rem;
    }

    .mobile-brand img{
        width:110px;
    }

    .mobile-nav-links a{
        font-size:1.8rem;
    }

    .mobile-socials a{
        width:38px;
        height:38px;
    }

}
.section-kicker{
    display:inline-block;

    margin-bottom:1rem;

    color:var(--secondary);

    font-size:.8rem;
    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;
}

/* =========================================
   PAGE BANNER
========================================= */

.page-banner{
    position:relative;

    height:420px;

    display:flex;
    align-items:flex-end;

    overflow:hidden;
}

.page-banner-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.page-banner-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.15) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.75) 100%
    );
}

.page-banner-content{
    position:relative;
    z-index:2;

    max-width:850px;

    padding-bottom:70px;

    color:#fff;
}

.page-banner .section-kicker{
    color:var(--accent);
}

.page-banner h1{
    font-size:clamp(3rem,6vw,5rem);
    line-height:.95;

    margin-bottom:1rem;
}

.page-banner p{
    max-width:700px;

    color:rgba(255,255,255,.88);

    line-height:1.9;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .page-banner{
        height:360px;
    }

    .page-banner-content{
        padding-bottom:50px;
    }

    .page-banner h1{
        font-size:3.5rem;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .page-banner{
        height:340px;
    }

    .page-banner-content{
        padding-bottom:30px;
    }

    .page-banner h1{
        font-size:2.4rem;
    }

    .page-banner p{
        max-width:100%;

        font-size:.95rem;
        line-height:1.7;
    }


}
/* =========================================
   SEARCH + FILTER
========================================= */

.podcast-filter-section{
    padding:70px 0;
}

.podcast-toolbar{
    display:flex;
    flex-direction:column;
    gap:1.5rem;
}

.podcast-search{
    position:relative;

    max-width:650px;
    width:100%;

    margin:auto;
}

.podcast-search i{
    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    color:#999;
}

.podcast-search input{
    width:100%;
    height:62px;

    border:none;
    outline:none;

    border-radius:999px;

    background:#fff;

    padding:0 25px 0 55px;

    font-size:.95rem;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);
}

.podcast-search input::placeholder{
    color:#999;
}

.podcast-filters{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:.75rem;
}

.podcast-filters button{
    border:none;

    padding:.85rem 1.3rem;

    border-radius:999px;

    background:#fff;

    color:var(--dark);

    font-size:.85rem;
    font-weight:600;

    cursor:pointer;

    transition:.35s ease;

   
}

.podcast-filters button:hover{
    transform:translateY(-3px);

  
}

.podcast-filters button.active{
    background:var(--primary);
    color:#fff;

  
}

.podcast-results{
    text-align:center;
}

.podcast-results span{
    color:var(--body);

    font-size:.9rem;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .podcast-filter-section{
        padding:60px 0;
    }

    .podcast-search{
        max-width:100%;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .podcast-filter-section{
        padding:50px 0;
    }

    .podcast-toolbar{
        gap:1.25rem;
    }

    .podcast-search input{
        height:58px;

        font-size:.9rem;
    }

    .podcast-filters{
        justify-content:flex-start;
        flex-wrap:nowrap;

        overflow-x:auto;
        overflow-y:hidden;

        padding-bottom:.5rem;

        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .podcast-filters::-webkit-scrollbar{
        display:none;
    }

    .podcast-filters button{
        flex-shrink:0;

        padding:.8rem 1.15rem;

        font-size:.8rem;
    }

    .podcast-results{
        text-align:left;
    }

    .podcast-results span{
        font-size:.85rem;
    }

}
/* =========================================
   FEATURED PODCAST
========================================= */

.featured-podcast{
    padding:20px 0 120px;
}

.featured-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.featured-image{
    overflow:hidden;
    border-radius:32px;
}

.featured-image img{
    width:100%;
    height:550px;

    object-fit:cover;

    border-radius:32px;

    transition:1s ease;
}

.featured-layout:hover .featured-image img{
    transform:scale(1.05);
}

.featured-tag{
    display:inline-flex;

    padding:.65rem 1rem;

    border-radius:999px;

    background:rgba(214,40,40,.08);

    color:var(--secondary);

    font-size:.8rem;
    font-weight:700;

    margin-bottom:1.25rem;
}

.featured-content h2{
    font-size:clamp(2.5rem,4vw,4.2rem);
    line-height:1.05;

    margin-bottom:1.5rem;
}

.featured-content p{
    color:var(--body);

    line-height:2;

    margin-bottom:2rem;
}

.featured-tags{
    display:flex;
    flex-wrap:wrap;
    gap:.75rem;

    margin-bottom:2rem;
}

.featured-tags span{
    padding:.65rem 1rem;

    border-radius:999px;

    background:#f5f5f5;

    font-size:.8rem;
    font-weight:600;
}

.featured-meta{
    display:flex;
    flex-wrap:wrap;
    gap:1.5rem;

    margin-bottom:2rem;
}

.featured-meta span{
    font-weight:600;
    color:var(--body);
}

.featured-meta i{
    color:var(--accent);
    margin-right:.35rem;
}

.podcast-btn{
    display:inline-flex;
    align-items:center;
    gap:.75rem;

    padding:1rem 1.8rem;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #d62828,
        #1d4ab7
    );

    color:#fff;

    font-weight:700;

    transition:.35s ease;
}

.podcast-btn:hover{
  

    box-shadow:
        0 15px 35px rgba(29,74,183,.20);
}
.podcast-btn i{
    transition:.35s ease;
}

.podcast-btn:hover i{
    transform:scale(1.2) translateX(2px);
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .featured-podcast{
        padding:10px 0 100px;
    }

    .featured-layout{
        grid-template-columns:1fr;
        gap:3rem;
    }

    .featured-image img{
        height:450px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .featured-podcast{
        padding:0 0 80px;
    }

    .featured-layout{
        gap:2rem;
    }

    .featured-image{
        border-radius:24px;
    }

    .featured-image img{
        height:280px;
        border-radius:24px;
    }

    .featured-tag{
        font-size:.75rem;
    }

    .featured-content h2{
        font-size:2rem;
        line-height:1.1;

        margin-bottom:1rem;
    }

    .featured-content p{
        line-height:1.8;

        margin-bottom:1.5rem;
    }

    .featured-tags{
        gap:.5rem;

        margin-bottom:1.5rem;
    }

    .featured-tags span{
        font-size:.72rem;

        padding:.55rem .85rem;
    }

    .featured-meta{
        flex-direction:column;
        gap:.75rem;

        margin-bottom:1.5rem;
    }

    .featured-meta span{
        font-size:.9rem;
    }

    .podcast-btn{
        width:100%;

        justify-content:center;

        padding:1rem;
    }

}

/* =========================================
   PODCAST ARCHIVE
========================================= */

.podcast-archive{
    padding-bottom:120px;
}

.section-heading{
    text-align:center;
    margin-bottom:4rem;
}

.section-heading .section-kicker{
    margin:0 0 1rem;
    padding:0;
}

.section-heading .section-kicker span{
    display:inline-block;

    color:var(--secondary);

    font-family:'Inter',sans-serif;

    font-size:.8rem;
    font-weight:700;

    letter-spacing:.18em;

    text-transform:uppercase;
}

.section-heading .section-title{
    font-family:'Playfair Display',serif;

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:700;

    line-height:1.1;

    margin:0;
}

.podcast-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

.podcast-card{
    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.podcast-card:hover{
   

    box-shadow:
        0 25px 50px rgba(0,0,0,.08);
}

.podcast-thumb{
    overflow:hidden;
}

.podcast-thumb img{
    width:100%;
    height:240px;

    object-fit:cover;

    transition:1s ease;
}

.podcast-card:hover img{
    transform:scale(1.08);
}

.podcast-card-content{
    padding:1.5rem;
}

.podcast-category{
    display:inline-block;

    margin-bottom:.75rem;

    color:var(--secondary);

    font-size:.75rem;
    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;
}

.podcast-card-content h3{
    font-size:1.15rem;
    line-height:1.5;

    margin-bottom:.85rem;
}

.podcast-card-content p{
    color:var(--body);

    line-height:1.8;

    margin-bottom:1.25rem;

    font-size:.95rem;
}

/* =========================================
   TAGS
========================================= */

.podcast-tags{
    display:flex;
    flex-wrap:wrap;
    gap:.5rem;

    margin-bottom:1.5rem;
}

.podcast-tags span{
    padding:.45rem .85rem;

    border-radius:999px;

    background:#f5f5f5;

    font-size:.72rem;
    font-weight:600;

    color:var(--body);
}

/* =========================================
   FOOTER
========================================= */

.podcast-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
}

.podcast-duration{
    color:var(--accent);

    font-size:.85rem;
    font-weight:700;
}

.listen-btn{
    display:inline-flex;
    align-items:center;
    gap:.5rem;

    padding:.8rem 1rem;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #d62828,
        #1d4ab7
    );

    color:#fff;

    font-size:.82rem;
    font-weight:700;

    transition:.35s ease;
}

.listen-btn:hover{
  
    color:#fff;
}
.listen-btn i{
    transition:.35s ease;
}



.listen-btn:hover i{
    transform:scale(1.15);
}
.listen-btn i{
    font-size:.75rem;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .podcast-archive{
        padding-bottom:100px;
    }

    .section-heading{
        margin-bottom:3rem;
    }

    .podcast-grid{
        grid-template-columns:repeat(2,1fr);
        gap:1.75rem;
    }

    .podcast-thumb img{
        height:220px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .podcast-archive{
        padding-bottom:80px;
    }

    .section-heading{
        margin-bottom:2.5rem;
    }

 .section-heading .section-title{
    font-size:2.2rem;
}

    .podcast-grid{
        grid-template-columns:1fr;
        gap:1.5rem;
    }

    .podcast-card{
        border-radius:22px;
    }

    .podcast-thumb img{
        height:220px;
    }

    .podcast-card-content{
        padding:1.25rem;
    }

    .podcast-card-content h3{
        font-size:1.05rem;
    }

    .podcast-card-content p{
        font-size:.9rem;
        line-height:1.7;
    }

    .podcast-tags{
        gap:.4rem;
        margin-bottom:1.25rem;
    }

    .podcast-tags span{
        font-size:.68rem;

        padding:.4rem .75rem;
    }

    .podcast-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .listen-btn{
        width:100%;

        justify-content:center;
    }

}

/* =========================================
   PAGINATION
========================================= */

.podcast-pagination{
    padding-bottom:120px;
}

.pagination-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:.75rem;
}

.pagination-wrap a{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff;

    color:var(--dark);

    font-size:.9rem;
    font-weight:600;

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);

    transition:.35s ease;
}

.pagination-wrap a:hover{
    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.pagination-wrap a.active{
    background:
    linear-gradient(
        135deg,
        #d62828,
        #1d4ab7
    );

    color:#fff;

}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .podcast-pagination{
        padding-bottom:100px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .podcast-pagination{
        padding-bottom:80px;
    }

    .pagination-wrap{
        gap:.5rem;
    }

    .pagination-wrap a{
        width:42px;
        height:42px;

        font-size:.85rem;
    }

}