/*==============================================================
LATEST ARTICLES
==============================================================*/

.news-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    height:100%;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.news-image{
    position:relative;
    overflow:hidden;
    height:260px;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.news-card:hover img{
    transform:scale(1.08);
}

.news-category{
    position:absolute;
    top:20px;
    left:20px;
    background:#fff;
    color:#f58220;
    font-size:13px;
    font-weight:600;
    padding:8px 18px;
    border-radius:30px;
}

.news-content{
    padding:30px;
}

.news-meta{
    display:flex;
    gap:20px;
    font-size:14px;
    color:#888;
    margin-bottom:18px;
}

.news-meta i{
    color:#f58220;
    margin-right:5px;
}

.news-content h4{
    font-size:24px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:15px;
    transition:.3s;
}

.news-card:hover h4{
    color:#f58220;
}

.news-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.news-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.news-link i{
    transition:.3s;
}

.news-link:hover{
    color:#f58220;
}

.news-link:hover i{
    transform:translateX(5px);
}

@media(max-width:991px){

    .news-image{
        height:220px;
    }

    .news-content{
        padding:25px;
    }

    .news-content h4{
        font-size:21px;
    }

}