.news {
    margin-bottom: 50px;
}
.news__slider {
    margin-bottom: 20px;
}
.news-wrap {
    display: flex;
    margin-bottom: 50px;
}

.news__grid .news-wrap {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}
.news__grid .swiper-slide {
    max-width: 300px;
}

.news-item {
    width: calc(25% - 15px);
    border-radius: 16px;
    box-shadow: 0 0 4px #0000001A;
    overflow: hidden;
}

.news-item:hover {
    -webkit-box-shadow: 0 8px 32px rgba(52, 61, 66, .2);
    box-shadow: 0 8px 32px rgba(52, 61, 66, .2)
}

.news-item__preview img {
    width: 100%;
}

.news-item__date {
    font-size: 14px;
    line-height: 16px;
    color: #869AA5;
    padding: 15px 30px;
}

.news-item__title {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 800;
    color: #343D42;
    padding: 0 30px 15px 30px;
}

@media (max-width: 768px) {
    .news-wrap {
        flex-wrap: nowrap;
        gap: 0;
    }
}