/* =========================
   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:#ffffff;
    border-bottom:1px solid #ececec;
    padding:12px 0;
}

.header-top-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.today-date{
    color:#d90000;
    font-size:14px;
    font-weight:600;
}

.top-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.top-links a{
    color:#d90000;
    font-size:14px;
    font-weight:600;
    transition:.2s;
}

.top-links a:hover{
    color:#002f6c;
}

.social-icons{
    display:flex;
    align-items:center;
    gap:10px;
}

.social-icons a{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#c40000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.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: 35px;
    margin-bottom: 25px;
    border-left: 8px solid #d80000;
}

.category-hero span {
    color: #ffdddd;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.category-hero h1 {
    font-size: 44px;
    margin: 8px 0 10px;
    font-weight: 900;
}

.category-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #e8e8e8;
}

.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;
    padding: 0 34px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
}

.breaking-track a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

@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:0 20px;
    }

}

.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 {
    background: #e5e5e5;
    padding: 28px 0 45px;
}

.unicode-hero {
    background: linear-gradient(135deg, #00295f, #05045e);
    color: #fff;
    border-left: 8px solid #d80000;
    border-radius: 6px;
    padding: 40px;
    margin-bottom: 24px;
}

.unicode-hero span {
    color: #ffdada;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 900;
}

.unicode-hero h1 {
    font-size: 46px;
    font-weight: 900;
    margin: 10px 0;
}

.unicode-wrapper {
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    gap: 22px;
    align-items: center;
}

.unicode-box {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.unicode-title {
    background: #00295f;
    color: #fff;
    padding: 16px 20px;
}

.unicode-title h2 {
    font-size: 20px;
    font-weight: 900;
}

.unicode-box textarea {
    width: 100%;
    min-height: 420px;
    border: none;
    padding: 22px;
    resize: vertical;
    font-size: 20px;
    line-height: 1.9;
    outline: none;
}

.unicode-action {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.unicode-action button {
    background: #d80000;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s;
}

.unicode-action button:hover {
    transform: translateY(-2px);
    background: #b00000;
}

@media(max-width:992px){

    .unicode-wrapper{
        grid-template-columns:1fr;
    }

    .unicode-action{
        flex-direction:row;
    }

}

@media(max-width:768px){

    .unicode-hero h1{
        font-size:34px;
    }

    .unicode-box textarea{
        min-height:280px;
        font-size:18px;
    }

}

.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;
}