/* ==========================================================
   NEYEWS NEWS PAGE
========================================================== */

/* HERO */

.news-hero{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#fff;

    text-align:center;

    padding:90px 20px;

}

.news-hero h1{

    font-size:54px;

    margin-bottom:20px;

}

.news-hero p{

    max-width:850px;

    margin:auto;

    font-size:21px;

    line-height:1.8;

    color:#d7d7d7;

}


/* CATEGORY BAR */

.news-categories{

    background:#ffffff;

    border-bottom:1px solid #e5e7eb;

    padding:25px 0;

}

.news-categories .container{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.news-categories a{

    background:#16c47f;

    color:#fff;

    padding:10px 22px;

    border-radius:25px;

    text-decoration:none;

    transition:.3s;

}

.news-categories a:hover{

    background:#109e65;

}


/* TOP STORY */

.top-story{

    padding:70px 20px;

}

.top-story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}

.story-image img{

    width:100%;

    border-radius:15px;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.badge{

    display:inline-block;

    background:#ff6b35;

    color:#fff;

    padding:8px 18px;

    border-radius:25px;

    margin-bottom:20px;

    font-size:14px;

    font-weight:bold;

}

.story-content h2{

    font-size:42px;

    margin-bottom:25px;

}

.story-content p{

    font-size:19px;

    line-height:1.9;

    margin-bottom:35px;

}


/* NEWS GRID */

.latest-news{

    padding:80px 20px;

    background:#f8fafc;

}

.latest-news h2{

    text-align:center;

    margin-bottom:50px;

}

.news-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.news-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.news-card:hover{

    transform:translateY(-6px);

}

.news-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.news-body{

    padding:25px;

}

.news-body span{

    color:#16c47f;

    font-weight:bold;

    font-size:14px;

}

.news-body h3{

    margin:15px 0;

    font-size:24px;

}

.news-body p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

.news-body a{

    color:#16c47f;

    font-weight:bold;

    text-decoration:none;

}


/* TRENDING */

.trending-news{

    padding:80px 20px;

}

.trending-news h2{

    text-align:center;

    margin-bottom:50px;

}

.trending-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

}

.trending-main{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.trending-main img{

    width:100%;

    height:350px;

    object-fit:cover;

}

.trending-main h3{

    font-size:34px;

    padding:25px 30px 0;

}

.trending-main p{

    padding:20px 30px;

    line-height:1.9;

}

.trending-main .btn-primary{

    margin:0 30px 30px;

    display:inline-block;

}

.trending-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.trending-item{

    background:#fff;

    padding:25px;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.trending-item h4{

    margin-bottom:12px;

}

.trending-item a{

    color:#111827;

    text-decoration:none;

}

.trending-item p{

    color:#777;

}


/* CONTENT */

.news-content{

    padding:80px 20px;

}

.content-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

}

.editor-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.editor-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

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

}

.editor-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.editor-card h3{

    padding:20px;

}

.editor-card p{

    padding:0 20px 20px;

}

.editor-card a{

    display:block;

    padding:0 20px 25px;

    color:#16c47f;

    text-decoration:none;

}


/* SIDEBAR */

.sidebar-box{

    background:#fff;

    border-radius:12px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.sidebar-box h3{

    margin-bottom:20px;

}

.sidebar-box ul{

    list-style:none;

    padding:0;

}

.sidebar-box li{

    margin-bottom:14px;

}

.sidebar-box a{

    color:#333;

    text-decoration:none;

}

.sidebar-box a:hover{

    color:#16c47f;

}


/* NEWSLETTER */

.news-newsletter{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#fff;

    text-align:center;

    padding:90px 20px;

}

.news-newsletter h2{

    font-size:42px;

    margin-bottom:20px;

}

.news-newsletter p{

    max-width:700px;

    margin:0 auto 40px;

    color:#ddd;

}

.news-newsletter form{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.news-newsletter input{

    width:350px;

    max-width:100%;

    padding:15px;

    border:none;

    border-radius:8px;

}

.news-newsletter button{

    background:#16c47f;

    color:#fff;

    border:none;

    padding:15px 30px;

    border-radius:8px;

    cursor:pointer;

}


/* RESPONSIVE */

@media(max-width:900px){

.top-story-grid{

    grid-template-columns:1fr;

}

.trending-grid{

    grid-template-columns:1fr;

}

.content-grid{

    grid-template-columns:1fr;

}

.news-hero h1{

    font-size:40px;

}

.story-content h2{

    font-size:32px;

}

}
