.news-slider {
    width: 90vw;
    max-width: 1524px;
    position: relative !important;
    overflow: visible !important;
    /* вот это главное */
}

.news-slider-wrap {
    width: 100%;
    max-width: 1524px;
    margin: 0 auto;
    position: relative;
}

.news-slider.swiper {
    overflow: hidden !important;
    /* снова скрываем лишнее */
}

/* стрелки */
.news-slider .swiper-button-prev,
.news-slider .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 20;
}

.news-slider-wrap .swiper-button-prev {
    position: absolute;
    left: -4% !important;
}

.news-slider-wrap .swiper-button-next {
    position: absolute;
    right: -4% !important;
}

/* рисуем сами иконки */
.news-slider .swiper-button-prev::after,
.news-slider .swiper-button-next::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: contain;
}

/* используем твой chevron, только повернём */
.news-slider .swiper-button-next::after {
    background-image: url(https://dev.nissan-global.by/wp-content/uploads/2025/12/chevron.png);
    transform: rotate(180deg);
}

.news-slider .swiper-button-prev::after {
    background-image: url(https://dev.nissan-global.by/wp-content/uploads/2025/12/chevron.png);
}

.news-slider .swiper-button-prev::after,
.news-slider .swiper-button-next::after {
    font-size: 24px !important;
    color: #000 !important;
}

.news-slider .swiper-pagination {
    position: relative;
    margin-top: 24px;
    text-align: center;
}

.news-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    opacity: 1;
    margin: 0 4px !important;
}

.news-image {
    height: 253px;
}

.news-image img {
    height: 100% !important;
}

.textInfo {
    display: flex;
    flex-direction: column;
}

.news-slider .swiper-pagination-bullet-active {
    background: #081c34;
}

.news-item {
    background: #f8f8f8;
    overflow: hidden;
    border: 1px solid #eee;
    max-width: 508px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 545px;
    justify-content: space-between;
}

.news-image img {
    width: 100%;
    height: 253px !important;
    object-fit: cover;
}

.news-title {
    font-size: 20px;
    font-weight: 200;
    margin-top: 20px;
    margin-bottom: 16px;
    color: #222;
    font-family: "Nissan Brand Light", Sans-serif;
}

.news-excerpt {
    color: #444;
    line-height: 1.5;
    width: 95%;
    font-family: "Nissan Brand Light", Sans-serif;
    font-size: 14px;
}

.news-btn {
    font-weight: 500;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    color: #081c34 !important;
    margin: 24px auto;
    margin-bottom: 15px;
    width: fit-content;
    font-family: "Nissan Brand Light", Sans-serif;
    position: relative;
    padding-right: 25px;
}

.news-btn:after {
    position: absolute;
    content: ' ';
    background-image: url(https://dev.nissan-global.by/wp-content/uploads/2025/12/chevron.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 17px;
    height: 17px;
    right: 0;
    top: 10%;
}