.news-block {
    margin-top: -10px;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

.news-block .swiper {
    padding: 10px;
    margin: -10px;
}

.news-block .swiper-slide {
    overflow: visible;
}

.news-block .news-block__wrapper-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.news-block .news-block__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}

.news-block .news-block__header button {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-block .news-block__wrapper-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.news-block .news-block__list {
    min-width: 0;
}

.news-block .news-block__list.hidden {
    display: none;
}

.news-block .news-block-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

.news-block .news-block-card__wrapper-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 22px 0;
    width: 303px;
    height: 215px;
    border-radius: 10px;
    background-color: #ffffff;
    background-color: var(--white-color, #FFF);
    -webkit-box-shadow: 0px 0px 9.9px 0px rgba(0, 101, 220, 0.1);
    box-shadow: 0px 0px 9.9px 0px rgba(0, 101, 220, 0.1);
}

.news-block .news-block-card__wrapper-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
}

.news-block .news-block-card__wrapper-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin-top: 13px;
}

.news-block .news-block-card__date {
    margin-bottom: 20px;
    color: #78909C;
    color: var(--grey-color, #78909C);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px;
    opacity: 0.8;
}

.news-block .news-block-card__title {
    position: relative;
    color: #37474F;
    color: var(--main-color, #37474F);
    font-family: "Raleway";
    font-family: var(--secondary-font-family, "Raleway");
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.news-block .news-block-card__title::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 150px;
    height: 1px;
    background-color: #E0E0E0;
    background-color: var(--light2-grey-color, #E0E0E0);
}

.news-block a.news-block-card__title:hover {
    color: #0065DC;
    color: var(--blue-color, #0065DC);
}

.news-block .news-block-card__title span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-block .news-block-card__description {
    margin-top: 28px;
    color: #78909C;
    color: var(--grey-color, #78909C);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px;
}

@media (max-width: 1280px) {
    .news-block .news-block-card__wrapper-text {
        width: 300px;
    }

    /*.news-block .news-block-card__wrapper-img {
        height: auto;
    }*/
}

@media (max-width: 1024px) {
    .news-block .news-block-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }

    .news-block .news-block-card__wrapper-img {
        width: 100%;
    }

    .news-block .news-block-card__wrapper-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news-block .news-block__wrapper-content {
        gap: 20px;
    }

    .news-block .news-block__header {
        gap: 8px;
    }

    .news-block .button {
        padding: 0 8px;
        font-size: 12px;
    }

    .news-block .news-block-card__date {
        font-size: 13px;
        line-height: 16.9px;
    }

    .news-block .news-block-card__title {
        font-size: 14px;
        line-height: 18.2px;
    }

    .news-block .news-block-card__title::before {
        bottom: -12px;
    }

    .news-block .news-block-card__description {
        margin-top: 24px;
        font-size: 13px;
        line-height: 16.9px;
    }

    .news-block div.swiper-navigation {
        display: none;
    }
}