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

:root{

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

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

    --white:#ffffff;

}

/* =========================================
   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;
}

.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);

    margin-bottom:1rem;
}

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

    line-height:1.9;

    color:rgba(255,255,255,.88);
}
/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .page-banner{
        height:360px;
    }

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

        padding-bottom:50px;
    }

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

}

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

@media(max-width:576px){

    .page-banner{
        height:300px;
    }

    .page-banner-overlay{
        background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.80) 100%
        );
    }

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

        padding-bottom:25px;
    }

    .page-banner .section-kicker{
        margin-bottom:.75rem;

        font-size:.7rem;

        letter-spacing:.15em;
    }

    .page-banner h1{
        font-size:2.3rem;
        line-height:1.05;

        margin-bottom:.75rem;
    }

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

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

}

/* =========================================
   NEWS ARCHIVE
========================================= */

.news-archive{
    padding:120px 0;
}

.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;
}

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

.news-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;
}

.news-card:hover{
    

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

.news-image{
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:260px;

    object-fit:cover;

    transition:1s ease;
}

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

.news-content{
    padding:1.75rem;
}

.news-date{
    display:inline-block;

    margin-bottom:1rem;

    color:var(--secondary);

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

    text-transform:uppercase;

    letter-spacing:.08em;
}

.news-content h3{
    font-size:1.35rem;
    line-height:1.5;

    margin-bottom:1.25rem;
}

.news-link{
    display:inline-flex;
    align-items:center;
    gap:.6rem;

    color:var(--primary);

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

    transition:.35s ease;
}

.news-link i{
    transition:.35s ease;
}

.news-link:hover{
    color:var(--primary);
}

.news-link:hover i{
    transform:translateX(4px);
}

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

@media(max-width:991px){

    .news-archive{
        padding:100px 0;
    }

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

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

    .news-image img{
        height:240px;
    }

    .news-content{
        padding:1.5rem;
    }

    .news-content h3{
        font-size:1.2rem;
    }

}

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

@media(max-width:576px){

    .news-archive{
        padding:80px 0;
    }

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

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

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

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

    .news-image img{
        height:220px;
    }

    .news-content{
        padding:1.25rem;
    }

    .news-date{
        margin-bottom:.75rem;

        font-size:.72rem;
    }

    .news-content h3{
        font-size:1.05rem;
        line-height:1.5;

        margin-bottom:1rem;
    }

    .news-link{
        font-size:.85rem;
    }

}

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

.news-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);

  
}

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

    color:#fff;
}
/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

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

}

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

@media(max-width:576px){

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

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

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

        font-size:.85rem;
    }

}

