body{
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    background:#f4f6f9;
}

.header{
    background: linear-gradient(135deg,#0d47a1,#1976d2);
    color:white;
    padding:25px;
    text-align:center;
    font-size:26px;
    font-weight:bold;
}

.container{
    max-width:1100px;
    margin:30px auto;
    padding:0 20px;
}

.news-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.news-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.news-card:hover{
    transform:translateY(-5px);
}

.news-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.news-content{
    padding:18px;
}

.news-title{
    font-size:18px;
    font-weight:bold;
    color:#222;
    text-decoration:none;
}

.news-title:hover{
    color:#1976d2;
}

.article-container{
    max-width:900px;
    margin:30px auto;
    background:white;
    padding:35px;
    border-radius:10px;
}

.article-title{
    font-size:30px;
    font-weight:bold;
    margin-bottom:25px;
}

.article-image{
    width:100%;
    max-width:800px;
    display:block;
    margin:0 auto 25px auto;
    border-radius:8px;
}

.article-content{
    font-size:17px;
    line-height:1.8;
    color:#333;
    text-align:justify;
}

.article-content p{
    margin-bottom:18px;
}

.back{
    display:inline-block;
    margin-top:30px;
    padding:10px 18px;
    background:#1976d2;
    color:white;
    text-decoration:none;
    border-radius:6px;
}
