.trending-news{

    padding:80px 0;

    background:#fafafa;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.section-tag{

    color:#E60012;

    font-weight:700;

}

.section-header h2{

    font-size:38px;

    margin-top:8px;

}

.view-all{

    color:#E60012;

    font-weight:700;

}

.trending-wrapper{

    display:flex;

    align-items:center;

    gap:20px;

}

.trending-slider{

    display:flex;

    gap:25px;

    overflow:hidden;

    scroll-behavior:smooth;

}

.trend-card{

    min-width:330px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.trend-card:hover{

    transform:translateY(-8px);

}

.trend-image{

    position:relative;

}

.trend-image img{

    height:220px;

    object-fit:cover;

}

.trend-category{

    position:absolute;

    left:15px;

    top:15px;

    background:#E60012;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:12px;

}

.trend-content{

    padding:22px;

}

.trend-content h3{

    font-size:20px;

    line-height:1.5;

    margin-bottom:20px;

}

.trend-meta{

    display:flex;

    justify-content:space-between;

    color:#888;

    font-size:14px;

}

.slider-btn{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    font-size:22px;

}

.slider-btn:hover{

    background:#E60012;

    color:#fff;

}

@media(max-width:991px){

.section-header{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

.slider-btn{

display:none;

}

.trend-card{

min-width:290px;

}

}