.news-article-wrapper{
    padding-top:130px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
}
.head{
    width:90%;
}
.news-article-content-wrapper{
    display:flex;
    flex-direction:column;
    width:90%;
    gap: 5px;
}
.news-article-img{
    width:100%;
    max-height:600px;
    border-radius:8px;
}
.news-article-content{
    text-align:start;
}
.date{
    padding:10px 0 0 2px;
}
@media (max-width:768px){
    .article{
        max-width:90%
    }
    .news-article-wrapper{
        padding-top: 65px;
    }
    .head h1{
        padding-top:4px;
        font-size: 23px;
        line-height: 1.3;
    }
    .news-article-content-wrapper{
        width:100%;
    }
    .head{
        width:99%;
    }
}