body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#f7f7f7;
    width:100%;
    overflow-x:hidden;
}

/* Section */
.news-section{
    padding:30px 20px;
    width:100%;
}

/* Title */
.section-title{
    text-align:center;
    margin-bottom:20px;
}

.section-title h2{
    font-size:28px;
    font-weight:bold;
    margin:0;
}

/* FULL SCREEN GRID */
.news-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    width:100%;
    max-width:1700px;
    margin:auto;
}

/* Card */
.news-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.news-card:hover{
    transform:translateY(-6px);
}

/* Image */
.news-img{
    position:relative;
}

.news-img img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.news-img .date{
    position:absolute;
    bottom:10px;
    left:10px;
    background:#049ebb;
    color:#fff;
    padding:6px 12px;
    font-size:13px;
    border-radius:5px;
}

/* Content */
.news-content{
    padding:20px;
}

.news-content h3{
    font-size:20px;
    margin:0 0 10px;
}

.news-content h3 a{
    color:#222;
    text-decoration:none;
}

.news-content h3 a:hover{
    color:#049ebb;
}

.news-content p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}

/* Footer */
.news-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
    font-size:13px;
    color:#888;
}

.news-footer .icons span{
    margin-left:10px;
    cursor:pointer;
}

/* TABLET */
@media(max-width:992px){
.news-section{
    padding:40px 20px;
}
}

/* MOBILE */
@media(max-width:576px){

.news-section{
    padding:30px 10px;
}

.news-img img{
    height:200px;
}

.section-title h2{
    font-size:26px;
}

}
