.news-banners-container {
    width: 100%;
    margin: 0 auto;
}

.news-banners-wrapper {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.news-banner-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-banner-item a {
    background-color: white;
    display: block;
}

.news-banner-item img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .news-banners-wrapper {
        flex-direction: column;
        gap: 15px;
    }
}