.news-slider {
    background-color: var(--BG);
    margin-top: var(--spacing-large);
}

.news-slider .swiper {
    padding-bottom: clamp(20px, 3vw, 60px);
    background: var(--BG);
}

.news-slider .swiper-slide {
    height: 620px;
    /* width: 100%; */
    /* max-width: 1100px; */
}

.news-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-slide-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.news-slide-content a {
    display: flex;
    height: 100%;
    width: 100%;
}

.news-slide-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 500px;
}

.news-slider .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 0;
}