.news-preview__slider{
    display: flex;
}
.news-preview__list:not(.news-preview__slider) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.news-preview__heading {
    margin-bottom: 60px
}

.news-preview__slider .swiper {
    overflow: visible
}

.news-preview__slider .swiper-slide {
    height: auto
}

.news-preview__item {
    min-height: 100%;
    border-radius: var(--bdrs);
    background: var(--dark-20);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column
}

.news-preview__item__image {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 484 / 283;
    position: relative;
}

.news-preview__item__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--bdrs)
}

.news-preview__item__tag {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--color-100);
    border-radius: 64px;
    color: var(--dark-10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font: 400 20px/24px var(--ff)
}

.news-preview__item__tag {
    font-weight: 600
}

.news-preview__item__tag span {
    font-size: 11px;
    transform: translateY(-3px)
}

.news-preview__item__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px
}


.news-preview__item__heading {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--black-2);
}

.news-preview__item__date {
    /*border-radius: 100px;*/
    /*padding: 6px;*/
    /*background: var(--white);*/
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #8d8ba2;
    /*position: absolute;
    right: 20px;
    bottom: 20px;*/
}

@media (max-width: 760px) {
    .news-preview__item__tag {
        font-weight: 700
    }

    .news-preview__item__tag span {
        transform: translateY(-2px)
    }
}
@media (max-width: 1000px) {
    .news-preview__slider .swiper-slide {
        width: 84vw;
        max-width: 424px
    }
}

@media (max-width: 1439px) {
    .news-preview__item__tag {
        font-size: 18px;
        line-height: 24px
    }
}

@media (min-width: 992px) {
    .news-preview__list:not(.news-preview__slider) {
        grid-template-columns: repeat(2, 1fr);
    }
    /*.news-preview__item__date {
        right: 16px;
        bottom: 16px;
    }*/
    /*.news-preview__item__body {
        padding: 20px 10px;
    }*/
}

@media (min-width: 1400px) {
    .news-preview__list:not(.news-preview__slider) {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1600px) {
    .news-preview__list:not(.news-preview__slider) {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

