.news-image-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.news-image-group .img-wrapper {
    width: 100%;
    max-width: calc(50% - 8px);
    height: 343px;
    overflow: hidden;
    border-radius: 13px;
}

.news-image-group .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:1024px) {
    .news-image-group {
        flex-direction: column;
    }

    .news-image-group .img-wrapper {
        width: 100%;
        max-width: 100%;
        height: 228px;
        ;
        overflow: hidden;
        border-radius: 13px;
    }

    .news-image-group .img-wrapper:nth-of-type(2),
    .news-image-group .img-wrapper:nth-of-type(3),
    .news-image-group .img-wrapper:nth-of-type(4) {
        display: none;
    }
}