/* =========================
   LATEST NEWS SECTION
========================= */

.nj-latest{
    padding:60px 0;
    background:#f5f5f5;
}

.nj-container{
    width:1200px;
    max-width:95%;
    margin:auto;
}

.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
    margin:0;
}

.section-title a{
    text-decoration:none;
    color:#d60000;
    font-weight:700;
}

.latest-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.latest-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.latest-card:hover{
    transform:translateY(-5px);
}

.latest-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.latest-card a{
    text-decoration:none;
    color:#222;
}

.latest-card h3{
    font-size:22px;
    line-height:1.4;
    padding:15px;
    margin:0;
}

.latest-card p{
    padding:0 15px 20px;
    color:#666;
    line-height:1.6;
    margin:0;
}

@media(max-width:992px){

.latest-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.latest-grid{
grid-template-columns:1fr;
}

}