.newsTop{
    background:#fff;
}

.featuredPost{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
    margin-top:50px;
}

.featuredImg img{
    width:100%;
    border-radius:30px;
}

.featuredTxt span{
    color:#c9a45c;
    letter-spacing:2px;
}

.featuredTxt h3{
    font-size:42px;
    margin:15px 0 20px;
}

.featuredTxt p{
    color:#555;
    margin-bottom:30px;
}

.newsList{
    background:#f5f3ef;
}

.newsGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.newsItem{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.3s;
}

.newsItem:hover{
    transform:translateY(-8px);
}

.newsItem .Img img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.newsItem .Txt{
    padding:30px;
}

.newsItem .date{
    color:#c9a45c;
    font-size:14px;
    margin-bottom:12px;
}

.newsItem h3{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.5;
}

.newsItem p{
    color:#666;
    margin:0;
}

.blogCta{
    padding:120px 0;
    background:
    linear-gradient(rgba(7,11,18,.86),rgba(7,11,18,.86)),
    url(../images/cta.jpg) center/cover;
}

@media(max-width:1024px){

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

}

@media(max-width:768px){

    .featuredPost,
    .newsGrid{
        grid-template-columns:1fr;
    }

    .featuredTxt h3{
        font-size:30px;
    }

}