.news-section{
    padding: 70px 0;
    background: linear-gradient(45deg,#eef8ff 0%,#d9f0ff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.news-banner{
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   z-index: -1;
}

.section-title{
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2{
    font-size: 45px;
    line-height: 1.2;
    color: #006FA3;
    font-weight: 800;
}

.section-title span{
    display: block;
    width: 180px;
    height: 5px;
    background: #0093DA;
    margin: 18px auto 0;
    border-radius: 30px;
}

.news-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    max-width: 1320px;
    width: 90%;
    margin: auto;
}

.news-card{
    padding:20px 20px 0px 20px;
    border-radius: 28px;
    background: white;
}

.news-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 31, 84, .12);
}

.news-image{
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 28px;
}

.news-image img{
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.news-card:hover img{
    transform: scale(1.08);
}

.news-text h3{
    font-size: 30px;
    color: #006FA3;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 18px;
}

.news-text p{
    font-size: 18px;
    color: #444;
    line-height: 1.9;
    font-weight: 400;
}

.news-btn{
    margin-top: 20px;
    text-align: center;
}

.news-btn a{
    display: inline-block;
    margin-top: 20px;
    padding: 15px 42px;
    background: #006FA3;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 15px 30px rgba(0,147,230,.35);
}

.news-btn a:hover{
   background: #0093DA;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,147,230,.35);
}


@media (max-width:460px){

    .news-section{
        padding:60px 0;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title span{
        width:100px;
        height:4px;
    }

    .news-grid{
        grid-template-columns:1fr;
        width:100%;
        gap:25px;
        padding:0 16px;
    }

    .news-card{
        width:100%;
        padding:16px;
        border-radius:20px;
    }

    .news-image{
        margin-bottom:20px;
    }

    .news-image img{
        width:100%;
        height:220px;
        object-fit:cover;
    }

    .news-text h3{
        font-size:20px;
        margin-bottom:12px;
    }

    .news-text p{
        font-size:15px;
        line-height:1.8;
    }

    .news-btn{
        margin-top:40px;
    }

    .news-btn a{
        width:100%;
        text-align:center;
        padding:14px 20px;
        margin-top:20px;
    }
}