/* ===========================================
   NEWS SECTION
=========================================== */

.news-section{

    background:#f8fafc;

}

.news-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.news-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.14);

}

.news-image{

    position:relative;

    overflow:hidden;

}

.news-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.news-card:hover img{

    transform:scale(1.08);

}

.news-date{

    position:absolute;

    left:20px;

    top:20px;

    width:70px;

    height:70px;

    border-radius:15px;

    background:#0b4ea2;

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.news-date span{

    font-size:24px;

    line-height:1;

}

.news-content{

    padding:30px;

}

.news-category{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:#eef5ff;

    color:#0b4ea2;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

.news-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    line-height:1.4;

}

.news-content p{

    color:#666;

    line-height:1.8;

}

.read-more{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    color:#0b4ea2;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.read-more:hover{

    gap:16px;

    color:#f4b400;

}

@media(max-width:768px){

    .news-image img{

        height:220px;

    }

}