.section-collections-slider {
    @media screen and (max-width: 768px) {
        padding-bottom: 20px !important;
    }
    .collections-slider__suptitle {
        margin: 0;
        font-size: 15px;
        letter-spacing: 0;
        color: var(--color-darkgrey);
        @media screen and (min-width: 990px) {
            font-size: 16px;
        }
    }
    .collections-slider__title {
        margin: 0 0 20px;
        color: var(--color-brown);
        @media screen and (min-width: 990px) {
            margin: 0 0 30px;
        }
    }
    .swiper-slide {
        height: auto;
    }
    .swiper-slide__link {
        display: block;
        overflow: hidden;
        position: relative;
        height: 385px;
        z-index: 1;
        img {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: calc(100% - 1px);
            object-fit: cover;
            transition: opacity 0.5s ease-in-out;
        }
        &:hover {
            img {
                opacity: 0.7;
            }
        }
    }
    .collections-slider__content {
        min-width: 73%;
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 10px 15px;
        background-color: var(--color-white);
        letter-spacing: 0;
        span {
            color: var(--color-black);
            font-size: 15.5px;
            line-height: 1.1;
            font-weight: 600;
            font-family: var(--font-sora);
            text-decoration: underline;
        }
    }
    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        display: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
        &:before,
        &:after {
            display: none;
        }
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #eee;
        svg {
            width: 12px;
        }
    }

    .swiper-button-prev {
        left: 25px;
        @media screen and (max-width: 990px) {
            display: none;
        }
    }

    .swiper-button-next {
        right: 25px;
        @media screen and (max-width: 990px) {
            display: none;
        }
    }

    .swiper-wrapper {
        padding-bottom: 70px;
        @media screen and (max-width: 768px) {
            padding-bottom: 30px;
        }
    }

    .swiper-pagination {
        @media screen and (max-width: 768px) {
            display: none;
        }
    }

    .swiper-scrollbar {
        display: none;
        @media screen and (max-width: 768px) {
            left: 0;
            right: 0;
            width: 100%;
            background-color: #eeeeee;
            margin-top: 10px;
            height: 2px;
            display: block;
            .swiper-scrollbar-drag {
                display: block;
                background-color: #c7c0ba;
            }
        }
    }
}
