section.news {
    padding: 1em 0 0;
    margin-bottom: 0;
    position: relative;
}
.news-wrapper {
    position: relative;
    margin: 0 auto -10px;
    padding: 5px 5px 15px;
    min-height: 16vh;
    max-width: calc(100vw - 100px);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.news-item {
    display: flex;
    gap: 5px;
    position: relative;
    width: calc(33% - 20px);
    min-width: calc(25% - 11px);
    max-height: 200px;
    min-height: 16vh;
    box-shadow: 0 0 5px rgba(1, 14, 51, 0.25);
    border-radius: 7px;
    padding: 7px 7px 28px 7px;
}
.news-item img {
    width: 16vh;
    height: 14vh;
    object-fit: contain;
}
.news-item .btn-panel {
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    background-color: rgb(253, 248, 240);
    z-index: 5;
}
.news-item .descr-text {
    position: relative;
    font-size: 14px;
    line-height: 14px;
    max-height: 16vh;
    overflow: hidden;
    white-space: pre-wrap;
    min-height: 60px;
}
.news-item .descr-text:after {
    content: '';
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: linear-gradient(#fdf8f000, #fdf8f0);
    z-index: 4;
}
.item-info {
    padding-left: 10px;
    flex-grow: 2;
}
.data-event {
    font-weight: 800;
    font-size: 1.2em!important;
    padding-left: 8px;
    transform: translateY(8px);
}
.news .arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: calc(50% - 20px);
    transform: translateY(0);
    border-radius: 50%;
    padding: 18px 20px!important;
    z-index: 10;
    width: 60px;
    height: 60px;
    border: 7px solid rgba(255, 255, 255, 0.89)!important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.29);
}
.news .arrows:hover {
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.29)!important;
}
.news .arrows.left-arrow {
    transform: translateX(3vw);
}
.news .arrows.right-arrow {
    transform: translateX(45vw);
}
.news .arrows:active {
    width: 58px;
    height: 58px;
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.29)!important;
}
.news .type-event {
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    /*background-color: #fff;*/
    /*box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.32);*/
    padding: 2px 5px 3px 0;
    max-width: fit-content;
    position: relative;
    z-index: 1;
    color: #00558d;
}
.news .header-text {
    margin-top: 4px;
    line-height: 16px;
    position: relative;
    z-index: 2;
}
.mobi-swiper {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -60%);
    background: #ffffff;
    z-index: 10;
    pointer-events: none;
}
.mobi-swiper img {
    display: inline-block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.mobi-swiper.slow-hidden {
    transition: 3s;
    opacity: 0;
}

@media screen and (max-width: 1500px) {
    .news-item {
        width: calc(33% - 6px);
        min-width: calc(33% - 6px);
    }
}

@media screen and (max-width: 1100px) {
    .news-item {
        width: calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media screen and (max-width: 950px) {
    .mobi-swiper {
        display: flex;
    }
    .news {
        max-width: 100vw;
        overflow: hidden;
    }
    .news-wrapper {
        max-width: calc(100vw - 10px);
        overflow-y: auto;
    }
    .news-item {
        position: relative;
        width: calc(100vw - 21px);
        min-width: calc(100vw - 21px);
        padding-left: 10px;
        max-width: unset;
        padding-bottom: 35px;
    }
    .btn-panel {
        position: absolute;
        bottom: 5px;
        left: 5px;
        display: inline-block;
        width: calc(100% - 10px);
    }
    .data-event {
        position: absolute;
        bottom: 8px;
        left: 5px;
    }
    .news .arrows {
        display: none;
    }
}