.news-image{
    display: flex;
    /* flex-direction: column; */
    
    height: 100%;
}
.item{
    max-height: 450px;
    width: auto
}
@media (max-width: 500px) {
    .news-image{
        flex-direction: column;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
    }
    .item{
        margin: 2% 2%;
        width: 80% !important;
        height: auto !important;
        padding: 0 !important;
    }
}