/* =====================================
   BREAKING NEWS
===================================== */

.breaking-news{
    display:flex;
    align-items:stretch;
    margin-bottom:30px;
    overflow:hidden;
    background:#d90000;
    color:#fff;
    margin:20px 0;
}

.breaking-content{
    display:flex;
    align-items:center;
}

.breaking-label{
    width:140px;
    min-width:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:14px;
    font-weight:700;
    line-height:1.3;
    color:#fff;
    background:#000;
}

.breaking-content{
    display:flex;
    gap:25px;
    padding:12px;
    overflow:hidden;
}

.breaking-content a{
    color:#fff;
}

/* =================================
   MOBILE FIX PROGRESNEWS
================================= */

@media (max-width:768px){

    /* Breaking News */

    .breaking-news{
        display:block;
    }

    .breaking-label{
        width:100%;
        text-align:center;
        padding:12px;
    }

    .breaking-content{
        display:block;
    }

    .breaking-content a{
        display:block;
        padding:10px 15px;
        white-space:normal;
    }

    /* Featured News */

    .featured-grid{
        display:block !important;
    }

    .featured-main{
        width:100%;
        margin-bottom:20px;
    }

    .featured-side{
        width:100%;
        display:grid;
        grid-template-columns:1fr;
        gap:17px;
    }

    .featured-main img,
    .featured-side img{
        width:100%;
        height:auto;
        object-fit:cover;
    }

    .featured-main h2{
        font-size:28px;
        line-height:1.3;
    }

    /* News Grid */

    .news-grid{
        grid-template-columns:1fr !important;
    }

    /* Editor Choice */

    .choice-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }
}

/* =====================================
   FEATURED NEWS
===================================== */

.featured-news{
    margin-bottom:30px;
}

.featured-item{
    background:#fff;
    padding:15px;
    border-radius:8px;
}

.featured-item img{
    width:100%;
}

.featured-item h2{
    font-size:30px;
    margin-top:15px;
    line-height:1.3;
}

.featured-small h3{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* =====================================
   SECTION TITLE
===================================== */

.latest-news h2,
.most-read h2,
.editors-choice h2,
.trending-news h2{
    margin-bottom:20px;
    font-size:24px;
    border-left:5px solid #1544D9;
    padding-left:10px;
}

/* =====================================
   GRID NEWS
===================================== */

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.news-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 2px 5px rgba(0,0,0,.05);
}

.news-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.news-card h3{
    padding:10px;
    font-size:16px;
    line-height:1.4;
    color:#222;
}

@media(max-width:768px){

    .news-grid{
        grid-template-columns:1fr;
    }

    .featured-item h2{
        font-size:22px;
    }

}

/* ===================================
   FEATURED NEWS PREMIUM
=================================== */

.featured-news-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.featured-main{
    background:#fff;
}

.featured-main img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:6px;
}

.featured-main h2{
    margin-top:15px;
    font-size:38px;
    line-height:1.25;
    font-weight:700;
}

.featured-side{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.featured-small{
    background:#fff;
}

.featured-small h3{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.featured-small h3{
    margin-top:10px;
    font-size:18px;
    line-height:1.4;
    font-weight:600;
}

.featured-small a,
.featured-main a{
    color:#222;
}

.featured-small a:hover,
.featured-main a:hover{
    color:#0f2f97;
}

@media(max-width:768px){

    .featured-news-grid{
        grid-template-columns:1fr;
    }

    .featured-main h2{
        font-size:28px;
    }

}

@media (max-width:768px){

.featured-caption{
    font-size:13px;
    line-height:1.5;
    color:#666;
    margin-top:8px;
    font-style:italic;
}

/* ==========================
   NEWS GRID & CARD
========================== */

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.news-card{
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.news-card img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
}

.news-card h2{
    padding:12px;
    font-size:16px;
    line-height:1.5;
    color:#222;
}

.news-card a{
    color:#222;
}

.news-card a:hover{
    color:#0f2f97;
}

}

@media(max-width:768px){

    .news-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================
   EDITOR'S CHOICE
===================================== */

.choice-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.choice-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 2px 5px rgba(0,0,0,.08);
    transition:.3s;
}

.choice-card:hover{
    transform:translateY(-3px);
}

.choice-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.choice-card h3{
    padding:12px;
    font-size:15px;
    line-height:1.5;
    color:#222;
}

.choice-card a{
    color:#222;
}

@media(max-width:768px){

    .choice-grid{
        grid-template-columns:1fr;
    }

}

/* =====================================
   MOST READ WEEK
===================================== */

.most-read-week{
    margin-bottom:40px;
}

.most-read-week-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:12px 0;
    border-bottom:1px solid #e5e5e5;
}

.most-read-week-item:last-child{
    border-bottom:none;
}

.most-read-number{
    min-width:50px;
    font-size:32px;
    font-weight:700;
    color:#0f2f97;
    line-height:1;
}

.most-read-content{
    flex:1;
}

.most-read-content a{
    display:block;
    color:#222;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
}

.most-read-content a:hover{
    color:#0f2f97;
}

@media(max-width:768px){

    .most-read-number{
        font-size:24px;
        min-width:40px;
    }

}
