/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Noto Sans Devanagari",sans-serif;
    background:#efefef;
    color:#111;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(1350px,95%);
    margin:auto;
}





/* =========================
   TOP STRIP
========================= */

.top-strip{
    background:#d80000;
    border-bottom:2px solid #b30000;
    padding:10px 0;
}

.header-top-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.today-date{
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.2px;
}

.top-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.top-links a{
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    transition:.25s;
    text-decoration:none;
}

.top-links a:hover{
    opacity:.85;
}

.social-icons{
    display:flex;
    align-items:center;
    gap:10px;
}

.social-icons a{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff !important;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:.25s;
    backdrop-filter:blur(3px);
}

.social-icons a i{
    color:#fff !important;
}

.social-icons a:hover{
    transform:translateY(-2px);
    background:#002f6c;
}




/* =========================
   LOGO + AD AREA
========================= */

.logo-ad-area{
    background:#efefef;
    padding:18px 0 12px;
}

.logo-ad-flex{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:25px;
    align-items:center;
}

.site-logo img{
    width:170px;
}

.header-ad{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.header-ad img{
    width:100%;
    max-width:728px;
    border-radius:6px;
}





/* =========================
   NAVBAR
========================= */

.main-navbar{
    background:#00295f;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.nav-flex{
    display:flex;
    align-items:center;
    gap:0;
}

.menu-toggle{
    width:60px;
    height:50px;
    border:none;
    background:#00295f;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    border-right:1px solid rgba(255,255,255,0.08);
}

.home-btn{
    width:62px;
    height:50px;
    background:#d80000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.nav-menu{
    display:flex;
    align-items:center;
    flex:1;
}

.nav-menu a{
    color:#fff;
    padding:0 18px;
    height:50px;
    display:flex;
    align-items:center;
    font-size:17px;
    font-weight:700;
    border-right:1px solid rgba(255,255,255,0.05);
    transition:.25s;
    white-space:nowrap;
}

.nav-menu a:hover{
    background:#d80000;
}

.nav-search{
    width:58px;
    height:50px;
    position:relative;
    overflow:hidden;
    transition:.3s;
}

.nav-search input{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:none;
    outline:none;
    background:#001d45;
    color:#fff;
    padding:0 50px 0 15px;
    opacity:0;
    pointer-events:none;
}

.nav-search button{
    width:58px;
    height:50px;
    border:none;
    background:#00295f;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.nav-search:hover{
    width:240px;
}

.nav-search:hover input{
    opacity:1;
    pointer-events:auto;
}





/* =========================
   FOOTER
========================= */

.site-footer{
    background:#050d67;
    margin-top:60px;
    position:relative;
    overflow:hidden;
}

.footer-wave{
    height:70px;
    background:linear-gradient(
        to right,
        #dfe4ff,
        #ffffff,
        #dfe4ff
    );
    border-radius:0 0 50% 50%;
    opacity:.9;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:50px 0;
}

.footer-box{
    border:2px solid rgba(255,255,255,0.25);
    border-radius:40px;
    padding:30px;
    min-height:320px;
    color:#fff;
    background:rgba(255,255,255,0.02);
    backdrop-filter:blur(6px);
}

.footer-box h3{
    font-size:38px;
    margin-bottom:25px;
    position:relative;
}

.footer-box h3::after{
    content:'';
    width:100px;
    height:2px;
    background:#fff;
    position:absolute;
    left:0;
    bottom:-12px;
}

.footer-box p{
    font-size:18px;
    line-height:1.9;
    color:#f0f0f0;
}

.footer-about img{
    width:120px;
    margin-bottom:20px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#ffffff;
    color:#00295f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.footer-bottom{
    background:#d80000;
    padding:14px 0;
}

.bottom-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.bottom-flex p{
    color:#fff;
    font-size:14px;
    font-weight:600;
}





/* =========================
   COMMON SECTION
========================= */

.section-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}

.section-title h2{
    font-size:34px;
    color:#00295f;
    font-weight:900;
}

.section-title::after{
    content:'';
    flex:1;
    height:3px;
    background:#d80000;
}





/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .nav-menu{
        overflow-x:auto;
    }

    .nav-menu::-webkit-scrollbar{
        height:0;
    }

}

@media(max-width:992px){

    .logo-ad-flex{
        grid-template-columns:1fr;
    }

    .header-ad{
        justify-content:center;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .header-top-flex{
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-menu{
        display:none;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .bottom-flex{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:576px){

    .site-logo img{
        width:130px;
    }

    .top-links{
        gap:15px;
        flex-wrap:wrap;
    }

    .footer-box{
        border-radius:25px;
        padding:24px;
    }

    .footer-box h3{
        font-size:28px;
    }

}

/* =========================
   HOMEPAGE
========================= */

.homepage{
    padding:25px 0;
}

.home-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:22px;
    align-items:start;
}





/* =========================
   HERO NEWS
========================= */

.hero-news{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:6px;
    margin-bottom:25px;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
}

.hero-news img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.hero-news-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:35px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.1)
    );
    color:#fff;
}

.hero-news-content span{
    display:inline-block;
    background:#d80000;
    padding:7px 14px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
    border-radius:4px;
}

.hero-news-content h1{
    font-size:42px;
    line-height:1.35;
    margin-bottom:15px;
    font-weight:900;
}

.hero-news-content p{
    font-size:17px;
    line-height:1.8;
    color:#e4e4e4;
}





/* =========================
   NEWS SECTIONS
========================= */

.news-section{
    margin-bottom:35px;
}

.section-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
    border-bottom:3px solid #d80000;
    padding-bottom:10px;
}

.section-heading h2{
    font-size:36px;
    color:#00295f;
    font-weight:900;
}

.section-heading a{
    color:#d80000;
    font-weight:700;
    font-size:15px;
}





/* =========================
   NEWS GRID
========================= */

.news-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.news-grid.three{
    grid-template-columns:repeat(3,1fr);
}





/* =========================
   NEWS CARD
========================= */

.news-card{
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

.news-card:hover{
    transform:translateY(-4px);
}

.news-thumb{
    position:relative;
    overflow:hidden;
}

.news-thumb img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.news-card:hover .news-thumb img{
    transform:scale(1.05);
}

.placeholder-thumb{
    width:100%;
    height:260px;
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#555;
    font-weight:700;
}

.news-card h3{
    font-size:27px;
    line-height:1.5;
    padding:18px 18px 10px;
    color:#114400;
    font-weight:800;
}

.news-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:0 18px 18px;
    color:#666;
    font-size:14px;
}





/* =========================
   RIGHT SIDEBAR
========================= */

.right-sidebar{
    position:sticky;
    top:75px;
}

.sidebar-ad{
    background:#fff;
    padding:10px;
    margin-bottom:20px;
    border-radius:6px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-ad img{
    width:100%;
}

.sidebar-widget{
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-title{
    background:#00295f;
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    padding:15px 18px;
    position:relative;
}

.sidebar-title::after{
    content:'';
    position:absolute;
    right:0;
    top:0;
    width:70px;
    height:100%;
    background:#d80000;
    clip-path:polygon(35% 0,100% 0,100% 100%,0 100%);
}

.sidebar-title h3{
    font-size:30px;
    font-weight:900;
    position:relative;
    z-index:2;
}

.sidebar-title span{
    font-size:22px;
    position:relative;
    z-index:2;
}





/* =========================
   SIDEBAR NEWS
========================= */

.sidebar-news-list{
    display:flex;
    flex-direction:column;
}

.sidebar-news-item{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:14px;
    padding:14px;
    border-bottom:1px solid #ececec;
    transition:.25s;
}

.sidebar-news-item:hover{
    background:#f8f8f8;
}

.sidebar-news-item img,
.mini-placeholder{
    width:90px;
    height:75px;
    object-fit:cover;
    background:#ddd;
}

.sidebar-news-item h4{
    font-size:21px;
    line-height:1.45;
    color:#114400;
    margin-bottom:8px;
    font-weight:800;
}

.sidebar-news-item small{
    color:#777;
    font-size:13px;
}





/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .home-grid{
        grid-template-columns:1fr 330px;
    }

    .hero-news img{
        height:470px;
    }

}

@media(max-width:992px){

    .home-grid{
        grid-template-columns:1fr;
    }

    .right-sidebar{
        position:relative;
        top:0;
    }

    .news-grid.three{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .hero-news img{
        height:350px;
    }

    .hero-news-content{
        padding:20px;
    }

    .hero-news-content h1{
        font-size:28px;
    }

    .news-grid,
    .news-grid.three{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:28px;
    }

}

@media(max-width:576px){

    .hero-news img{
        height:260px;
    }

    .hero-news-content h1{
        font-size:23px;
    }

    .news-card h3{
        font-size:21px;
    }

    .sidebar-news-item h4{
        font-size:17px;
    }

}

/* =========================
   HERNE CHITRA HOMEPAGE EXACT STYLE
========================= */

.hc-home {
    background: #e5e5e5;
    padding-bottom: 35px;
}

.hc-home-top {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
    padding-top: 24px;
}

.hc-home-main-feature {
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.hc-home-main-feature a {
    display: block;
    position: relative;
}

.hc-home-main-feature img,
.hc-video-placeholder {
    width: 100%;
    height: 420px;
    object-fit: cover;
    background: linear-gradient(#dce7ef, #164766);
}

.hc-feature-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 25px 22px;
    background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
    text-align: center;
    color: #fff;
}

.hc-feature-overlay h1 {
    font-size: 36px;
    font-weight: 900;
}

.hc-feature-meta {
    margin-top: 8px;
    font-size: 13px;
    color: #ddd;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.hc-latest-box {
    background: #fff;
    padding: 0 0 10px;
}

.hc-side-ad-small {
    min-height: 45px;
    margin-bottom: 12px;
    text-align: center;
}

.hc-side-ad-small img {
    max-height: 55px;
    margin: auto;
}

.hc-widget-title,
.hc-section-bar {
    background: #05045e;
    color: #fff;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    position: relative;
    overflow: hidden;
}

.hc-widget-title::after,
.hc-section-bar::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: #d40000;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.hc-widget-title h3,
.hc-section-bar h3 {
    font-size: 28px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.hc-widget-title span,
.hc-section-bar span {
    position: relative;
    z-index: 2;
    color: #ff0000;
    font-weight: 900;
}

.hc-latest-list a {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.hc-latest-list img,
.hc-mini-thumb {
    width: 92px;
    height: 72px;
    object-fit: cover;
    background: #ccc;
}

.hc-latest-list h4 {
    font-size: 20px;
    line-height: 1.35;
    color: #064700;
    font-weight: 900;
}

.hc-notice {
    background: #fff;
    color: #1b4f9c;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 13px 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hc-notice span {
    color: #0045a8;
}

.hc-block {
    background: #e5e5e5;
    padding: 12px 0 24px;
}

.hc-center-title {
    text-align: center;
    margin-bottom: 18px;
}

.hc-center-title h2 {
    display: inline-block;
    color: #05045e;
    font-size: 34px;
    font-weight: 900;
    border-bottom: 4px solid #d40000;
    padding-bottom: 4px;
}

.hc-video-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hc-video-card,
.hc-large-video,
.hc-wide-feature {
    position: relative;
    display: block;
    overflow: hidden;
    background: #ddd;
}

.hc-video-card {
    border: 4px solid #e00000;
}

.hc-video-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hc-play {
    position: absolute;
    width: 52px;
    height: 52px;
    border: 3px solid #e00000;
    color: #e00000;
    background: rgba(255,255,255,.85);
    border-radius: 50%;
    display: grid;
    place-items: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
}

.hc-play.big {
    width: 72px;
    height: 72px;
    font-size: 24px;
}

.hc-dots {
    text-align: center;
    margin-top: 12px;
}

.hc-dots span {
    width: 6px;
    height: 6px;
    background: #bbb;
    display: inline-block;
    border-radius: 50%;
    margin: 0 3px;
}

.hc-dots span.active {
    background: #111;
}

.hc-two-video,
.hc-bottom-feature {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 24px;
}

.hc-video-section-card {
    background: #fff;
}

.hc-large-video img,
.hc-large-video .hc-video-placeholder {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.hc-video-placeholder.dark {
    background: linear-gradient(#f4f4f4, #555);
}

.hc-large-video h4,
.hc-wide-feature h3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 45px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
}

.hc-wide-feature {
    height: 360px;
}

.hc-wide-feature img,
.hc-wide-gradient {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(#d7e7ef, #064569);
}

.hc-wide-feature div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 20px 28px;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
    color: #fff;
    text-align: center;
}

.hc-wide-feature h3 {
    position: static;
    padding: 0;
    background: none;
}

.hc-wide-feature p {
    font-size: 14px;
    margin-top: 8px;
}

.hc-ad-box img {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.today-date {
    min-width: 220px;
    font-weight: 700;
}

/* Responsive */
@media(max-width: 992px) {
    .hc-home-top,
    .hc-two-video,
    .hc-bottom-feature {
        grid-template-columns: 1fr;
    }

    .hc-video-row {
        grid-template-columns: 1fr;
    }

    .hc-home-main-feature img,
    .hc-video-placeholder {
        height: 300px;
    }
}

@media(max-width: 600px) {
    .hc-feature-overlay h1 {
        font-size: 24px;
    }

    .hc-notice {
        font-size: 17px;
    }

    .hc-center-title h2 {
        font-size: 26px;
    }
}

/* =========================
   PREMIUM NAVBAR
========================= */

.main-navbar{
    background:#002f75;
    position:sticky;
    top:0;
    z-index:99999;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}

.nav-flex{
    display:flex;
    align-items:center;
    min-height:58px;
}

.menu-toggle{
    width:58px;
    height:58px;
    background:#002f75;
    border:none;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    transition:.25s;
}

.menu-toggle:hover{
    background:#001f4e;
}

.menu-toggle span{
    width:24px;
    height:2.5px;
    border-radius:20px;
    background:#fff;
    transition:.3s;
}

.home-btn{
    width:60px;
    height:58px;
    background:#d40000;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s;
}

.home-btn:hover{
    background:#b40000;
}

.home-btn svg{
    width:24px;
    height:24px;
    color:#fff;
}

.nav-menu{
    display:flex;
    align-items:center;
    flex:1;
    overflow-x:auto;
    scrollbar-width:none;
}

.nav-menu::-webkit-scrollbar{
    display:none;
}

.nav-menu a{
    color:#fff;
    height:58px;
    display:flex;
    align-items:center;
    padding:0 20px;
    font-size:16px;
    font-weight:700;
    white-space:nowrap;
    transition:.25s;
    position:relative;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    left:20px;
    right:20px;
    bottom:0;
    height:3px;
    background:#d40000;
    transform:scaleX(0);
    transition:.25s;
}

.nav-menu a:hover{
    background:rgba(255,255,255,.05);
}

.nav-menu a:hover::after{
    transform:scaleX(1);
}

.nav-search{
    width:58px;
    height:58px;
    position:relative;
    overflow:hidden;
    transition:.3s;
    background:#002f75;
}

.nav-search:hover{
    width:240px;
}

.nav-search input{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    border:none;
    outline:none;
    background:#001f4e;
    color:#fff;
    padding:0 55px 0 18px;
    font-size:15px;
    opacity:0;
    pointer-events:none;
}

.nav-search:hover input{
    opacity:1;
    pointer-events:auto;
}

.nav-search button{
    width:58px;
    height:58px;
    border:none;
    background:#002f75;
    color:#fff;
    cursor:pointer;
    position:absolute;
    right:0;
    top:0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-search svg{
    width:22px;
    height:22px;
}

.nav-search button:hover{
    background:#001f4e;
}





/* =========================
   MOBILE SIDEBAR MENU
========================= */

@media(max-width:992px){

    .nav-menu{
        position:fixed;
        left:-320px;
        top:0;
        width:300px;
        height:100vh;
        background:#002f75;
        flex-direction:column;
        align-items:flex-start;
        padding-top:70px;
        overflow-y:auto;
        transition:.35s;
        z-index:999999;
        box-shadow:0 0 40px rgba(0,0,0,.3);
    }

    .nav-menu.active{
        left:0;
    }

    .nav-menu a{
        width:100%;
        height:56px;
        border-bottom:1px solid rgba(255,255,255,.06);
    }

    .nav-search{
        width:58px !important;
    }

    .nav-search input{
        display:none;
    }

}


/* =========================
   DYNAMIC HOMEPAGE
========================= */

.hc-home-dynamic {
    background: #e5e5e5;
    padding-bottom: 35px;
}

.hc-dynamic-ad {
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.hc-dynamic-ad img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    margin: auto;
}

.hc-empty-ad {
    min-height: 120px;
    display: grid;
    place-items: center;
    color: #777;
    background: #f5f5f5;
    border: 2px dashed #ccc;
    font-weight: 800;
}

.hc-category-grid-section {
    padding: 12px 0 28px;
}

.hc-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.hc-dynamic-card {
    background: #fff;
    overflow: hidden;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: .25s;
}

.hc-dynamic-card:hover {
    transform: translateY(-4px);
}

.hc-dynamic-card img,
.hc-dynamic-card .hc-mini-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #ccc;
}

.hc-dynamic-card h3 {
    padding: 15px 15px 6px;
    font-size: 22px;
    line-height: 1.45;
    color: #064700;
    font-weight: 900;
}

.hc-dynamic-card p {
    padding: 0 15px 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

@media(max-width: 1100px) {
    .hc-dynamic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .hc-dynamic-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SINGLE NEWS PAGE
========================= */

.single-news-page {
    background: #e5e5e5;
    padding: 28px 0 40px;
}

.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.article-main {
    background: transparent;
}

.article-header-card {
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    margin-bottom: 18px;
}

.article-category-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.article-category-row a,
.article-breaking,
.article-headline {
    background: #00295f;
    color: #fff;
    padding: 7px 13px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
}

.article-breaking {
    background: #d80000;
}

.article-headline {
    background: #064700;
}

.article-header-card h1 {
    font-size: 44px;
    line-height: 1.35;
    color: #062c00;
    font-weight: 900;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 21px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.article-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
    font-weight: 700;
}

.article-featured-image {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.article-featured-image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 5px;
}

.article-video-box {
    background: #000;
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
}

.article-video-box iframe {
    width: 100%;
    height: 460px;
    border: 0;
}

.article-share-row {
    background: #fff;
    padding: 14px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.article-share-row a {
    padding: 9px 14px;
    border-radius: 4px;
    background: #00295f;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.article-share-row a:nth-child(2) {
    background: #111;
}

.article-share-row a:nth-child(3) {
    background: #0a8f3c;
}

.article-content {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    font-size: 21px;
    line-height: 2.05;
    color: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    border-radius: 6px;
    margin: 18px auto;
}

.article-ad,
.sidebar-ad-box {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 18px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.article-ad img,
.sidebar-ad-box img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
}

.article-tags {
    background: #fff;
    margin-top: 18px;
    padding: 18px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.article-tags strong {
    color: #00295f;
}

.article-tags span {
    background: #f0f2f5;
    color: #333;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.article-sidebar {
    position: sticky;
    top: 78px;
}

.single-sidebar-widget {
    margin-top: 0;
}

.related-news-section {
    margin-top: 28px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.related-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.related-card img,
.related-placeholder {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #ccc;
}

.related-card h3 {
    padding: 14px;
    font-size: 20px;
    line-height: 1.45;
    color: #064700;
    font-weight: 900;
}

@media(max-width: 992px) {
    .single-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .article-header-card h1 {
        font-size: 32px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .article-header-card,
    .article-content {
        padding: 20px;
    }

    .article-header-card h1 {
        font-size: 26px;
    }

    .article-content {
        font-size: 18px;
    }

    .article-video-box iframe {
        height: 260px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CATEGORY PAGE
========================= */

.category-page {
    background: #e5e5e5;
    padding: 25px 0 40px;
}

.category-ad,
.category-side-ad {
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.category-ad img,
.category-side-ad img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
}

.empty-ad {
    min-height: 95px;
    border: 2px dashed #cfd6e4;
    display: grid;
    place-items: center;
    color: #777;
    font-weight: 800;
}

.empty-ad.small {
    min-height: 240px;
}

.empty-ad small {
    color: #00295f;
}

.category-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-radius: 6px;
    padding: 18px 25px;
    margin-bottom: 20px;
    border-left: 6px solid #d80000;
}

.category-hero span {
    color: #ffdddd;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-hero h1 {
    font-size: 28px;
    margin: 4px 0 6px;
    font-weight: 900;
    line-height: 1.2;
}

.category-hero p {
    font-size: 14px;
    line-height: 1.6;
    color: #e8e8e8;
    margin: 0;
}

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.category-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: .25s;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-thumb {
    position: relative;
}

.category-thumb img,
.category-placeholder {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #ddd;
    display: grid;
    place-items: center;
    color: #555;
    font-weight: 800;
}

.category-thumb span {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #d80000;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 3px;
}

.category-card-body {
    padding: 16px;
}

.category-card-body h2 {
    font-size: 23px;
    line-height: 1.45;
    color: #064700;
    font-weight: 900;
    margin-bottom: 9px;
}

.category-card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.category-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #777;
}

.category-sidebar {
    position: sticky;
    top: 75px;
}

.category-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.category-pagination a {
    background: #fff;
    color: #00295f;
    padding: 9px 13px;
    border-radius: 4px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.category-pagination a.active,
.category-pagination a:hover {
    background: #d80000;
    color: #fff;
}

.category-empty {
    background: #fff;
    padding: 40px;
    border-radius: 6px;
    text-align: center;
}

.category-empty h2 {
    color: #00295f;
    font-size: 32px;
}

.category-empty p {
    margin-top: 10px;
    color: #666;
}

@media(max-width: 1100px) {
    .category-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 992px) {
    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
    }
}

@media(max-width: 650px) {
    .category-post-grid {
        grid-template-columns: 1fr;
    }

    .category-hero {
        padding: 24px;
    }

    .category-hero h1 {
        font-size: 32px;
    }
}

/* =========================
   SEARCH PAGE
========================= */

.search-page {
    background: #e5e5e5;
    padding: 25px 0 40px;
}

.search-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-radius: 6px;
    padding: 35px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.search-hero span {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.search-hero h1 {
    font-size: 42px;
    margin: 8px 0;
    font-weight: 900;
}

.search-page-form {
    display: flex;
    gap: 10px;
}

.search-page-form input {
    width: 280px;
    height: 52px;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    font-size: 15px;
}

.search-page-form button {
    height: 52px;
    border: none;
    background: #d80000;
    color: #fff;
    padding: 0 22px;
    border-radius: 4px;
    font-weight: 900;
    cursor: pointer;
}

.search-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    gap: 24px;
    align-items: start;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.search-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: .25s;
}

.search-card:hover {
    transform: translateY(-4px);
}

.search-thumb img,
.search-placeholder {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #ddd;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.search-body {
    padding: 16px;
}

.search-category {
    display: inline-block;
    background: #00295f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.search-body h2 {
    font-size: 23px;
    line-height: 1.45;
    color: #064700;
    font-weight: 900;
    margin-bottom: 10px;
}

.search-body p {
    color: #666;
    line-height: 1.7;
}

.search-body mark {
    background: #ffe96d;
    padding: 1px 3px;
}

.search-sidebar {
    position: sticky;
    top: 75px;
}

.search-ad-box {
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.search-ad-box img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.search-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.search-pagination a {
    background: #fff;
    color: #00295f;
    padding: 9px 13px;
    border-radius: 4px;
    font-weight: 800;
}

.search-pagination a.active,
.search-pagination a:hover {
    background: #d80000;
    color: #fff;
}

.search-empty {
    background: #fff;
    padding: 50px;
    border-radius: 6px;
    text-align: center;
}

.search-empty h2 {
    font-size: 34px;
    color: #00295f;
}

.search-empty p {
    margin-top: 10px;
    color: #666;
}

@media(max-width:1100px){
    .search-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:992px){

    .search-layout{
        grid-template-columns:1fr;
    }

    .search-sidebar{
        position:static;
    }

}

@media(max-width:650px){

    .search-grid{
        grid-template-columns:1fr;
    }

    .search-hero h1{
        font-size:30px;
    }

    .search-page-form{
        width:100%;
    }

    .search-page-form input{
        width:100%;
    }

}

/* =========================
   VIDEO PAGE
========================= */

.video-page {
    background: #e5e5e5;
    padding: 25px 0 40px;
}

.video-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-left: 8px solid #d80000;
    border-radius: 6px;
    padding: 35px;
    margin-bottom: 22px;
}

.video-hero span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffdada;
}

.video-hero h1 {
    font-size: 44px;
    margin: 8px 0;
    font-weight: 900;
}

.video-hero p {
    color: #e8e8e8;
    font-size: 18px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.video-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: .25s;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumb {
    position: relative;
}

.video-thumb img,
.video-placeholder {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(#ddd, #777);
}

.video-play {
    position: absolute;
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: #d80000;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
    border: 3px solid #d80000;
}

.video-card-body {
    padding: 18px;
}

.video-card-body span {
    background: #00295f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
}

.video-card-body h2 {
    color: #064700;
    font-size: 24px;
    line-height: 1.45;
    margin-top: 12px;
    font-weight: 900;
}

@media(max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-hero h1 {
        font-size: 32px;
    }
}


/* =========================
   GALLERY PAGE
========================= */

.gallery-page {
    background: #e5e5e5;
    padding: 25px 0 40px;
}

.gallery-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-left: 8px solid #d80000;
    border-radius: 6px;
    padding: 35px;
    margin-bottom: 22px;
}

.gallery-hero span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffdada;
}

.gallery-hero h1 {
    font-size: 44px;
    margin: 8px 0;
    font-weight: 900;
}

.gallery-hero p {
    color: #e8e8e8;
    font-size: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: .25s;
}

.gallery-card:hover {
    transform: translateY(-4px);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
}

.gallery-thumb img,
.gallery-placeholder {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #ddd;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.gallery-thumb span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #d80000;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 4px;
}

.gallery-card h2 {
    padding: 18px;
    font-size: 25px;
    line-height: 1.45;
    color: #064700;
    font-weight: 900;
}

@media(max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-hero h1 {
        font-size: 32px;
    }
}

.contact-page {
    background: #e5e5e5;
    padding: 25px 0 40px;
}

.contact-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-left: 8px solid #d80000;
    border-radius: 6px;
    padding: 35px;
    margin-bottom: 22px;
}

.contact-hero h1 {
    font-size: 44px;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
}

.contact-info-box,
.contact-form-box,
.contact-map {
    background: #fff;
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.contact-info-box h2,
.contact-form-box h2 {
    color: #00295f;
    font-size: 30px;
    margin-bottom: 18px;
}

.contact-info-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-social a {
    background: #00295f;
    color: #fff;
    padding: 9px 13px;
    border-radius: 4px;
    font-weight: 800;
}

.contact-form-box form {
    display: grid;
    gap: 13px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 13px 14px;
    border-radius: 4px;
    font-size: 15px;
}

.contact-form-box textarea {
    min-height: 150px;
}

.contact-form-box button {
    background: #d80000;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-weight: 900;
    cursor: pointer;
}

.contact-map {
    margin-top: 24px;
    padding: 10px;
}

.contact-map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
}

@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}

.comment-section {
    background: #fff;
    margin-top: 20px;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.comment-section h2 {
    color: #00295f;
    font-size: 30px;
    margin-bottom: 18px;
}

.comment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 13px 14px;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 12px;
}

.comment-form textarea {
    min-height: 140px;
}

.comment-form button {
    background: #d80000;
    color: #fff;
    border: none;
    padding: 13px 22px;
    border-radius: 5px;
    font-weight: 900;
    cursor: pointer;
}

.comment-success {
    background: #e8fff0;
    color: #087a28;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 12px;
    font-weight: 800;
}

.comment-error {
    background: #fff1f1;
    color: #b00000;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 12px;
    font-weight: 800;
}

.approved-comments {
    margin-top: 25px;
}

.approved-comments h3 {
    color: #00295f;
    margin-bottom: 14px;
}

.comment-item {
    border-top: 1px solid #eee;
    padding: 15px 0;
}

.comment-item strong {
    color: #064700;
    font-size: 18px;
}

.comment-item small {
    display: block;
    color: #777;
    margin: 4px 0 8px;
}

.comment-item p {
    color: #333;
    line-height: 1.7;
}

@media(max-width: 600px) {
    .comment-row {
        grid-template-columns: 1fr;
    }
}

.reporter-page {
    background: #e5e5e5;
    padding: 28px 0 45px;
}

.reporter-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-left: 8px solid #d80000;
    border-radius: 6px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    margin-bottom: 28px;
}

.reporter-profile {
    display: flex;
    gap: 22px;
    align-items: center;
}

.reporter-profile img,
.reporter-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    background: #d80000;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 48px;
    font-weight: 900;
    border: 4px solid rgba(255,255,255,.35);
}

.reporter-profile span {
    color: #ffdddd;
    font-weight: 900;
}

.reporter-profile h1 {
    font-size: 42px;
    font-weight: 900;
    margin: 6px 0;
}

.reporter-profile p {
    max-width: 650px;
    line-height: 1.7;
    color: #e8e8e8;
}

.reporter-stats {
    display: flex;
    gap: 12px;
}

.reporter-stats div {
    background: rgba(255,255,255,.12);
    padding: 18px 24px;
    border-radius: 6px;
    text-align: center;
}

.reporter-stats strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
}

.reporter-stats span {
    font-size: 14px;
    color: #e8e8e8;
}

.reporter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.reporter-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: .25s;
}

.reporter-card:hover {
    transform: translateY(-4px);
}

.reporter-card img,
.reporter-placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #ddd;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.reporter-card div {
    padding: 18px;
}

.reporter-card span {
    background: #00295f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
}

.reporter-card h3 {
    color: #064700;
    font-size: 24px;
    line-height: 1.45;
    margin: 12px 0 8px;
    font-weight: 900;
}

.reporter-card p {
    color: #666;
    line-height: 1.7;
}

@media(max-width: 992px) {
    .reporter-hero {
        display: block;
    }

    .reporter-stats {
        margin-top: 22px;
    }

    .reporter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .reporter-profile {
        display: block;
        text-align: center;
    }

    .reporter-profile img,
    .reporter-avatar {
        margin: 0 auto 18px;
    }

    .reporter-grid {
        grid-template-columns: 1fr;
    }
}

.contact-page {
    background: #e5e5e5;
    padding: 28px 0 45px;
}

.contact-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-left: 8px solid #d80000;
    border-radius: 6px;
    padding: 40px;
    margin-bottom: 24px;
}

.contact-hero span {
    color: #ffdada;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 8px 0 14px;
}

.contact-hero p {
    max-width: 950px;
    line-height: 1.9;
    color: #ececec;
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-info-box,
.contact-team-box {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.contact-info-box h2,
.contact-team-box h2 {
    color: #00295f;
    font-size: 32px;
    margin-bottom: 22px;
}

.contact-info-item,
.team-contact-item {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child,
.team-contact-item:last-child {
    border-bottom: none;
}

.contact-info-item strong,
.team-contact-item strong {
    display: block;
    color: #d80000;
    margin-bottom: 6px;
    font-size: 16px;
}

.contact-info-item p,
.team-contact-item p {
    color: #444;
    font-size: 18px;
    line-height: 1.7;
}

.contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.contact-social a {
    background: #00295f;
    color: #fff;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 800;
}

.contact-social a:hover {
    background: #d80000;
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-hero{
        padding:28px;
    }

    .contact-hero h1{
        font-size:34px;
    }

}

.about-intro-card {
    background: #fff;
    border-radius: 6px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.about-intro-card h2 {
    color: #00295f;
    font-size: 34px;
    margin-bottom: 14px;
}

.about-intro-card p {
    color: #444;
    font-size: 18px;
    line-height: 1.9;
}

.about-page {
    background: #e5e5e5;
    padding: 28px 0 45px;
}

.about-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-left: 8px solid #d80000;
    border-radius: 6px;
    padding: 42px;
    margin-bottom: 24px;
}

.about-hero span {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffdada;
    font-weight: 900;
}

.about-hero h1 {
    font-size: 48px;
    margin: 10px 0;
    font-weight: 900;
}

.about-hero p {
    font-size: 19px;
    line-height: 1.9;
    color: #ececec;
    max-width: 900px;
}

.about-section-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    margin: 24px 0;
}

.about-card {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.about-card h2 {
    color: #00295f;
    font-size: 32px;
    margin-bottom: 12px;
}

.about-card p {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

.about-team {
    margin-top: 35px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.team-card {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: .25s;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card img,
.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    background: linear-gradient(135deg,#ed1c24,#0057b8);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 42px;
    font-weight: 900;
}

.team-card h3 {
    color: #064700;
    font-size: 24px;
    font-weight: 900;
}

.team-card span {
    display: inline-block;
    background: #00295f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin: 10px 0;
    font-weight: 900;
}

.team-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.team-card a {
    display: inline-block;
    margin-top: 15px;
    background: #d80000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 800;
}

@media(max-width:1100px){
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .about-section-grid{
        grid-template-columns:1fr;
    }

    .team-grid{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:34px;
    }

}

/* =========================
   BREAKING NEWS
========================= */

.breaking-news-bar {
    background: #b30000;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.breaking-news-wrap {
    display: flex;
    align-items: center;
    min-height: 54px;
}

.breaking-label {
    min-width: 170px;
    background: #7a0000;
    color: #fff;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    position: relative;
    z-index: 3;
}

.breaking-label span {
    background: #fff;
    color: #d80000;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .35;
    }
    100% {
        opacity: 1;
    }
}

.breaking-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.breaking-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: breakingScroll 45s linear infinite;
}

.breaking-track:hover {
    animation-play-state: paused;
}

.breaking-track a {
    color: #fff;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    position: relative;

    /* Bullet close to text */
    padding-left: 10px;

    /* Space between News 1 and News 2 */
    margin-right: 35px;
}

.breaking-track a::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.breaking-track a::after {
    display: none;
}

.breaking-track a:hover {
    color: #ffe5e5;
}

@keyframes breakingScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

@media(max-width:768px){

    .breaking-label{
        min-width:120px;
        font-size:14px;
    }

    .breaking-track a{
        font-size:14px;
        padding-left:10px;
        margin-right:25px;
    }

}

.notice-ad-wrapper {
    display: grid;
    grid-template-columns: minmax(0,1fr) 320px;
    gap: 16px;
    margin: 18px 0;
    align-items: stretch;
}

.notice-left {
    background: #fff;
    border-radius: 6px;
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    gap: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    overflow: hidden;
}

.notice-left span {
    color: #d80000;
    font-size: 32px;
    font-weight: 900;
    flex-shrink: 0;
}

.notice-left marquee {
    color: #222;
    font-size: 17px;
    font-weight: 700;
}

.notice-right-ad {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    min-height: 62px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.notice-right-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice-ad-placeholder {
    width: 100%;
    height: 100%;
    min-height: 62px;
    display: grid;
    place-items: center;
    color: #888;
    font-weight: 900;
    border: 2px dashed #d7d7d7;
}

@media(max-width:992px){

    .notice-ad-wrapper{
        grid-template-columns:1fr;
    }

}

.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    transition: .25s;
}

.top-social a:hover {
    transform: translateY(-2px) scale(1.06);
}

.social-facebook {
    background: #1877f2;
}

.social-twitter {
    background: #000;
}

.social-youtube {
    background: #ff0000;
}

.social-instagram {
    background: linear-gradient(
        135deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}


/* =========================
   UNICODE PAGE
========================= */

/* ===================================
   UNICODE PAGE
=================================== */

.unicode-main{
    width:100%;
    padding:10px 15px 30px;
}

.unicode-converter{
    width:100%;
    background:#fff;
    border:1px solid #dcdcdc;
    overflow:hidden;
}

/* ===================================
   HEADER
=================================== */

.unicode-header{
    display:flex;
}

.unicode-left-title,
.unicode-right-title{
    width:50%;
    color:#fff;
    text-align:center;
    font-weight:700;
    font-size:14px;
    letter-spacing:.5px;
    padding:10px;
}

.unicode-left-title{
    background:#b30000;
}

.unicode-right-title{
    background:#0b45c5;
}

/* ===================================
   BODY
=================================== */

.unicode-body{
    display:flex;
}

.unicode-body textarea{
    width:50%;
    height:600px;
    border:none;
    outline:none;
    resize:none;
    padding:12px;
    font-size:14px;
    line-height:1.7;
    font-family: Arial, Helvetica, sans-serif;
    color:#333;
    background:#fff;
}

#legacy_text{
    border-right:1px solid #dcdcdc;
}

#unicode_text{
    background:#fff;
}

/* ===================================
   PLACEHOLDER
=================================== */

.unicode-body textarea::placeholder{
    color:#888;
    font-size:14px;
}

/* ===================================
   FOOTER BUTTON AREA
=================================== */

.unicode-footer{
    padding:12px 15px;
    border-top:1px solid #dcdcdc;
    text-align:right;
    background:#fafafa;
}

#copy_unicode{
    background:#b30000;
    color:#fff;
    border:none;
    padding:10px 20px;
    font-size:13px;
    font-weight:700;
    border-radius:3px;
    cursor:pointer;
    transition:.25s;
}

#copy_unicode:hover{
    background:#8c0000;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .unicode-header{
        flex-direction:column;
    }

    .unicode-left-title,
    .unicode-right-title{
        width:100%;
        font-size:13px;
        padding:8px;
    }

    .unicode-body{
        flex-direction:column;
    }

    .unicode-body textarea{
        width:100%;
        height:280px;
        font-size:14px;
    }

    #legacy_text{
        border-right:none;
        border-bottom:1px solid #dcdcdc;
    }

    .unicode-footer{
        text-align:center;
    }
}

.mobile-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    opacity: 0;
    visibility: hidden;
    z-index: 999998;
    transition: .3s;
}

.mobile-panel-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-side-panel {
    position: fixed;
    left: -310px;
    top: 0;
    width: 285px;
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    padding: 28px 28px 34px;
    transition: .35s ease;
    box-shadow: 10px 0 35px rgba(0,0,0,.28);
    display: flex;
    flex-direction: column;
}

.mobile-side-panel.show {
    left: 0;
}

.mobile-panel-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 28px;
    height: 28px;
    border: none;
    background: #d80000;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    border-radius: 4px;
    cursor: pointer;
}

.mobile-panel-logo {
    margin-bottom: 18px;
}

.mobile-panel-logo img {
    width: 95px;
    height: auto;
    object-fit: contain;
}

.mobile-panel-links {
    display: grid;
    gap: 13px;
    margin-top: 8px;
}

.mobile-panel-links a {
    color: #064700;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    transition: .2s;
}

.mobile-panel-links a:hover,
.mobile-panel-links a.active-side {
    color: #d80000;
    padding-left: 6px;
}

.mobile-panel-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 25px;
}

.mobile-panel-social a {
    width: 38px;
    height: 38px;
    background: #006400;
    color: #fff !important;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
}

.mobile-panel-social a i {
    color: #fff !important;
}

body.panel-open {
    overflow: hidden;
}

.nav-menu a.active-nav {
    background: #d80000;
    color: #fff;
}

.home-btn.active-home {
    background: #b80000;
}

.logo-ad-area {
    background: #ffffff !important;
}

.compact-footer {
    background: #050d67;
    margin-top: 35px;
}

.compact-footer .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 18px;
    padding: 32px 0;
}

.compact-footer .footer-box {
    min-height: 220px;
    border-radius: 28px;
    padding: 22px;
}

.compact-footer .footer-box h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.compact-footer .footer-box h3::after {
    width: 75px;
    bottom: -8px;
}

.compact-footer .footer-box p {
    font-size: 15px;
    line-height: 1.7;
}

.compact-footer .footer-about img {
    width: 82px;
    margin-bottom: 12px;
}

.compact-footer .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.compact-footer .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #050d67 !important;
}

.compact-footer .footer-social a i {
    color: #050d67 !important;
    font-size: 15px;
}

.compact-footer .footer-bottom {
    padding: 10px 0;
}

.compact-footer .footer-bottom p {
    font-size: 13px;
}

@media(max-width: 992px) {
    .compact-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .compact-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bottom a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


.nav-more {
    position: relative;
}

.nav-more > button {
    height: 58px;
    border: none;
    background: transparent;
    color: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.nav-more-dropdown {
    position: absolute;
    top: 58px;
    right: 0;
    width: 210px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    display: none;
    z-index: 99999;
}

.nav-more:hover .nav-more-dropdown {
    display: block;
}

.nav-more-dropdown a {
    color: #064700;
    height: auto;
    padding: 13px 16px;
    display: block;
    font-weight: 800;
    border-bottom: 1px solid #eee;
}

.nav-more-dropdown a:hover,
.nav-more-dropdown a.active-nav {
    background: #d80000;
    color: #fff;
}

.nav-search-box {
    position: relative;
    height: 58px;
    display: flex;
    align-items: center;
}

.nav-search-trigger {
    width: 58px;
    height: 58px;
    border: none;
    background: #002f75;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.nav-search-form {
    position: absolute;
    right: 0;
    top: 64px;
    width: 330px;
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    display: none;
    z-index: 99999;
    grid-template-columns: 1fr 44px;
    gap: 8px;
}

.nav-search-box.active .nav-search-form {
    display: grid;
}

.nav-search-form input {
    height: 44px;
    border: 1px solid #ddd;
    padding: 0 14px;
    outline: none;
    border-radius: 4px;
}

.nav-search-form button {
    border: none;
    background: #d80000;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}


/* =========================
   FIX ANYA DROPDOWN
========================= */

.main-navbar {
    overflow: visible !important;
}

.nav-flex {
    overflow: visible !important;
}

.nav-menu {
    overflow: visible !important;
}

.nav-more {
    position: relative;
    height: 58px;
    display: flex;
    align-items: center;
    z-index: 999999;
}

.nav-more > button {
    height: 58px;
    border: none;
    background: transparent;
    color: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.nav-more > button:hover {
    background: rgba(255,255,255,.08);
}

.nav-more-dropdown {
    position: absolute;
    top: 58px;
    right: 0;
    width: 230px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(0,0,0,.22);
    border-top: 4px solid #d80000;
    display: none;
    z-index: 9999999;
}

.nav-more:hover .nav-more-dropdown {
    display: block !important;
}

.nav-more-dropdown a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    padding: 13px 16px !important;
    color: #064700 !important;
    background: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border-bottom: 1px solid #eeeeee !important;
    white-space: normal !important;
}

.nav-more-dropdown a::after {
    display: none !important;
}

.nav-more-dropdown a:hover,
.nav-more-dropdown a.active-nav {
    background: #d80000 !important;
    color: #ffffff !important;
}


/* =========================
   SECTION ICON SIZE
========================= */

.sidebar-title span,
.hc-section-bar span,
.hc-center-title span,
.section-title span,
.home-section-title span {
    font-size: 34px !important;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-title h3,
.hc-section-bar h3,
.hc-center-title h2,
.section-title h2,
.home-section-title h2 {
    font-size: 32px;
    font-weight: 900;
}


.hc-widget-title span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #d80000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px !important;
    flex-shrink: 0;
}

.hc-widget-title span i {
    color: #fff !important;
    font-size: 20px !important;
}

.hc-widget-title h3 {
    font-size: 28px;
    font-weight: 900;
}

/* =========================
   GLOBAL THUMBNAIL FIX
   Prevents uploaded news images from ugly cropping
========================= */

.hc-home-main-feature img,
.hc-video-card img,
.hc-large-video img,
.hc-wide-feature img,
.hc-dynamic-card img,
.hc-latest-list img,
.sidebar-news-item img,
.news-thumb img,
.category-thumb img,
.search-thumb img,
.related-card img,
.gallery-thumb img,
.video-thumb img,
.reporter-card img {
    object-fit: contain !important;
    background: #f4f4f4 !important;
}

/* Hero/main image should stay large but not cut */
.hc-home-main-feature img {
    height: 420px !important;
    padding: 0;
}

/* Video row thumbnails */
.hc-video-card img {
    height: 180px !important;
    padding: 4px;
}

/* Two-column image boxes */
.hc-large-video img {
    height: 285px !important;
    padding: 4px;
}

/* Wide feature image */
.hc-wide-feature img {
    height: 100% !important;
    padding: 0;
}

/* Sidebar latest news thumbnails */
.hc-latest-list img,
.sidebar-news-item img,
.mini-placeholder,
.hc-mini-thumb {
    width: 92px !important;
    height: 72px !important;
    object-fit: contain !important;
    background: #f4f4f4 !important;
}

/* Category/search/grid cards */
.category-thumb img,
.search-thumb img,
.hc-dynamic-card img,
.news-thumb img {
    object-fit: contain !important;
    background: #f4f4f4 !important;
    padding: 5px;
}

/* Single article image should show full image nicely */
.article-featured-image img {
    object-fit: contain !important;
    background: #f4f4f4 !important;
    max-height: none !important;
}

/* Keep hover effect safe */
.news-card:hover .news-thumb img,
.hc-dynamic-card:hover img {
    transform: none !important;
}

.video-feature-box {
    position: relative;
    overflow: hidden;
}

.video-feature-trigger {
    width: 100%;
    border: none;
    padding: 0;
    background: #000;
    cursor: pointer;
    position: relative;
    display: block;
}

.video-feature-trigger img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #d80000;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 34px;
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.video-play-overlay i {
    color: #fff !important;
    margin-left: 5px;
}

.video-feature-box iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
    background: #000;
}

@media(max-width:768px) {
    .video-feature-box iframe {
        height: 260px;
    }

    .video-play-overlay {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }
}


.hc-live-radio-feature {
    background: #000;
    min-height: 420px;
    overflow: hidden;
}

.hc-live-radio-feature iframe {
    width: 100%;
    height: 420px;
    display: block;
    background: #000;
}

.hc-live-radio-placeholder {
    height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #002f6c, #b30000);
    color: #fff;
    padding: 30px;
}

.hc-live-radio-placeholder i {
    font-size: 52px;
    color: #fff;
    margin-bottom: 12px;
}

.hc-live-radio-placeholder h2 {
    font-size: 34px;
    font-weight: 900;
    margin: 0;
}

.hc-live-radio-placeholder p {
    margin-top: 8px;
    font-size: 15px;
}

.hc-live-radio-feature {
    background: #000;
    height: 420px;
    overflow: hidden;
}

.hc-live-radio-feature iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    background: #000;
}

.hc-live-radio-placeholder {
    height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #002f6c, #b30000);
    color: #fff;
    padding: 30px;
}

.sidebar-thumb-video {
    width: 92px;
    height: 68px;
    flex: 0 0 92px;
    overflow: hidden;
    background: #000;
    border-radius: 6px;
}

.sidebar-thumb-video img,
.sidebar-thumb-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    display: block;
}

.sidebar-news-text h4,
.sidebar-news-item h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    max-height: 2.7em;
}


.category-card-body h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.4;
    max-height: 2.8em;
}

/* =========================
   CATEGORY BOTTOM AD + FOOTER SPACING FIX
========================= */

.category-page {
    padding-bottom: 0;
}

.category-page > section.container:last-of-type {
    margin-bottom: 0;
}

.category-bottom-ad,
.category-ad.empty-ad {
    margin: 20px 0 25px;
}

.category-bottom-ad {
    min-height: auto;
}

.category-ad.empty-ad {
    min-height: 90px;
    padding: 18px;
}

.category-ad.empty-ad span {
    font-size: 15px;
    line-height: 1.5;
}

.site-footer,
.footer {
    margin-top: 0 !important;
}

/* if your footer has huge top padding */
.main-footer {
    margin-top: 0 !important;
    padding-top: 35px;
}

/* =========================
   SINGLE NEWS VIDEO GAP FIX
========================= */

.article-featured-image.video-feature-box {
    padding: 0 !important;
    margin: 0 0 20px !important;
    background: #000 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.article-featured-image.video-feature-box iframe {
    width: 100% !important;
    height: 520px !important;
    display: block !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #000 !important;
}

.video-feature-trigger {
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: #000 !important;
}

.video-feature-trigger img {
    width: 100% !important;
    height: 520px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.article-featured-image.video-feature-box > img {
    width: 100% !important;
    height: 520px !important;
    object-fit: cover !important;
    display: block !important;
}

@media(max-width:768px) {
    .article-featured-image.video-feature-box iframe,
    .video-feature-trigger img,
    .article-featured-image.video-feature-box > img {
        height: 260px !important;
    }
}

/* =========================
   CATEGORY VIDEO PLAY ICON
========================= */

.category-thumb {
    position: relative;
    overflow: hidden;
}

.thumb-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(216, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8;
    box-shadow: 0 8px 25px rgba(0,0,0,.35);
    transition: .3s;
}

.thumb-play-icon i {
    color: #fff;
    font-size: 21px;
    margin-left: 4px;
}

.category-card:hover .thumb-play-icon {
    transform: translate(-50%, -50%) scale(1.12);
    background: #ff0000;
}

/* =========================
   SIDEBAR VIDEO PLAY ICON
========================= */

.sidebar-thumb-video {
    width: 92px;
    height: 68px;
    flex: 0 0 92px;
    overflow: hidden;
    background: #000;
    border-radius: 6px;
    position: relative;
}

.sidebar-thumb-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* small play button for sidebar thumbnails */

.mini-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(216, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}

.mini-play-icon i {
    color: #fff;
    font-size: 13px;
    margin-left: 2px;
}

/* =========================
   2 LINE TITLE LIMIT
========================= */

.category-card-body h2,
.sidebar-news-text h4,
.sidebar-news-item h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-card-body h2 {
    line-height: 1.4;
    max-height: 2.8em;
}

.sidebar-news-text h4,
.sidebar-news-item h4 {
    line-height: 1.35;
    max-height: 2.7em;
}

.category-video-thumb {
    height: 210px;
    overflow: hidden;
    background: #000;
}

.category-video-thumb iframe,
.category-video-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
}

.category-card-body h2 a {
    color: inherit;
    text-decoration: none;
}

.category-card-body h2 a:hover {
    color: #d80000;
}

.category-card-body h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: 2.8em;
}


/* =========================
   HOME LIVE / VIDEO SECTIONS
========================= */

.hc-live-radio-feature {
    background: #000;
    aspect-ratio: 16 / 9;
    min-height: 420px;
    overflow: hidden;
}

.hc-live-radio-feature iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.hc-live-radio-placeholder {
    height: 100%;
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(135deg, #002f6c, #b30000);
    color: #fff;
    padding: 30px;
}

.hc-live-radio-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
}

.hc-live-radio-placeholder h2 {
    font-size: 32px;
    font-weight: 900;
    margin: 0;
}

/* =========================
   REUSABLE PLAYABLE THUMBNAILS
========================= */

.hc-playable-card {
    background: #fff;
    overflow: hidden;
}

.hc-playable-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.hc-playable-thumb img,
.hc-playable-thumb iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

.hc-thumb-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 62px;
    height: 62px;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    background: rgba(216, 0, 0, .92);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
    transition: .25s;
}

.hc-thumb-play-btn i {
    color: #fff;
    font-size: 22px;
    margin-left: 4px;
}

.hc-thumb-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
}

.hc-playable-card h3,
.hc-playable-card h4 {
    margin: 10px 0 0;
    font-weight: 900;
    line-height: 1.35;
}

.hc-playable-card h3 a,
.hc-playable-card h4 a {
    color: inherit;
    text-decoration: none;
}

.hc-playable-card h3 a:hover,
.hc-playable-card h4 a:hover {
    color: #d80000;
}

/* =========================
   PRATIKRITI SLIDER
========================= */

.hc-pratikriti-section {
    overflow: hidden;
}

.hc-pratikriti-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
}

.hc-pratikriti-slider::-webkit-scrollbar {
    height: 6px;
}

.hc-pratikriti-slider::-webkit-scrollbar-thumb {
    background: #b30000;
    border-radius: 20px;
}

.hc-pratikriti-card {
    scroll-snap-align: start;
}

.hc-pratikriti-card h3 {
    padding: 0 2px;
    font-size: 18px;
}

/* =========================
   KHABAR / VRITTA / VLOG / PHOTO
========================= */

.hc-large-home-video .hc-playable-thumb {
    aspect-ratio: 16 / 9;
}

.hc-large-home-video h4 {
    font-size: 19px;
    padding: 0 2px;
}

/* =========================
   PODCAST 2 VIDEO GRID
========================= */

.hc-podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.hc-podcast-card h3 {
    font-size: 20px;
}

/* =========================
   TWO LINE TITLE LIMIT
========================= */

.hc-playable-card h3,
.hc-playable-card h4,
.hc-latest-list h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.7em;
}

/* =========================
   MOBILE
========================= */

@media(max-width: 768px) {

    .hc-live-radio-feature,
    .hc-live-radio-placeholder {
        min-height: 230px;
    }

    .hc-thumb-play-btn {
        width: 48px;
        height: 48px;
    }

    .hc-thumb-play-btn i {
        font-size: 17px;
    }

    .hc-podcast-grid {
        grid-template-columns: 1fr;
    }

    .hc-pratikriti-slider {
        grid-auto-columns: 82%;
    }

    .hc-large-home-video h4,
    .hc-podcast-card h3 {
        font-size: 16px;
    }
}

/* =========================
   FORCE NEWS TITLES
========================= */

.hc-playable-card h3,
.hc-playable-card h4,
.hc-pratikriti-card h3,
.hc-podcast-card h3,
.hc-large-home-video h4 {
    font-size: 24px !important;
    line-height: 1.45 !important;
    font-weight: 800 !important;
    margin-top: 12px !important;
    padding: 0 !important;
    color: #111 !important;
}

.hc-playable-card h3 a,
.hc-playable-card h4 a,
.hc-pratikriti-card h3 a,
.hc-podcast-card h3 a,
.hc-large-home-video h4 a {
    color: #111 !important;
    text-decoration: none !important;
}

.hc-playable-card h3 a:hover,
.hc-playable-card h4 a:hover,
.hc-pratikriti-card h3 a:hover,
.hc-podcast-card h3 a:hover,
.hc-large-home-video h4 a:hover {
    color: #d80000 !important;
}

.hc-playable-card h3,
.hc-playable-card h4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* =========================
   FORCE YOUTUBE LIVE HERO
========================= */

.hc-home-main-feature,
.hc-live-radio-feature {
    width: 100% !important;
    background: #000 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
}

.hc-live-radio-feature iframe {
    width: 100% !important;
    height: 650px !important;
    min-height: 650px !important;
    display: block !important;
    border: 0 !important;
    background: #000 !important;
}

@media (max-width: 1200px) {
    .hc-live-radio-feature iframe {
        height: 520px !important;
        min-height: 520px !important;
    }
}

@media (max-width: 768px) {
    .hc-live-radio-feature iframe {
        height: 280px !important;
        min-height: 280px !important;
    }
}

/* =========================
   ACCURATE YOUTUBE LIVE HERO
========================= */

.hc-live-radio-feature {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    background: #000 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    min-height: auto !important;
    height: auto !important;
}

.hc-live-radio-feature iframe {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9 !important;
    display: block !important;
    border: 0 !important;
    background: #000 !important;
}

.hc-live-radio-placeholder {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    min-height: auto !important;
    height: auto !important;
    display: grid !important;
    place-items: center !important;
    text-align: center !important;
    background: linear-gradient(135deg, #002f6c, #b30000) !important;
    color: #fff !important;
    padding: 30px !important;
}

@media (max-width: 768px) {
    .hc-live-radio-feature,
    .hc-live-radio-feature iframe,
    .hc-live-radio-placeholder {
        aspect-ratio: 16 / 9 !important;
    }
}

/* =========================
   YOUTUBE LIVE HERO SECTION
========================= */

.hc-live-radio-feature {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
}

.hc-live-radio-feature iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hc-live-radio-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#002f6c,#b30000);
    color: #fff;
    text-align: center;
    padding: 30px;
}

.hc-live-radio-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
}

.hc-live-radio-placeholder h2 {
    font-size: 32px;
    margin: 0;
    font-weight: 900;
}

.hc-live-radio-placeholder p {
    margin-top: 10px;
    font-size: 15px;
}

/* Desktop minimum size */

@media (min-width:1200px) {

    .hc-live-radio-feature {
        min-height: 500px;
    }

}

/* Mobile */

@media (max-width:768px) {

    .hc-live-radio-feature {
        min-height: auto;
    }

}

/* =========================
   TAJA SAMACHAR SIDEBAR FIX
========================= */

.hc-latest-list a {
    border-bottom: 2px solid #d6d6d6 !important;
    padding-bottom: 14px !important;
    margin-bottom: 14px !important;
}

.hc-latest-list a:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.hc-latest-list h4 {
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
}