.featured-slider {
    width: 100%;
    height: calc(100vh - 4.7vw);
    height: -webkit-calc(100vh - 4.7vw);
    display: flex;
    position: relative;
}

.featured-slider .left {
    width: 37.5vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--color-black);
}

.featured-slider .left .title {
    padding: 1.66vw;
}

.featured-slider .button {
    padding: 0 1.66vw;
}

.featured-slider .left .button {
    border-top: 1px solid var(--color-black);
}

.featured-slider .right {
    width: 62.5vw;
    position: relative;
}

.featured-slider .right .swiper {
    width: 100%;
    height: 100%;
}

.featured-slider .right .swiper .desktop,
.featured-slider .right .swiper .mobile {
    position: relative;
    width: 100%;
    height: 100%;
}

.featured-slider .right .swiper .mobile {
    display: none;
}

.featured-slider .right .swiper .swiper-slide picture,
.featured-slider .right .swiper .swiper-slide picture img {
    position: relative;
    width: 100%;
    height: 100%;
}

.featured-slider .right .swiper .swiper-slide picture img {
    display: block;
    object-fit: cover;
}

.featured-slider .right .button {
    border-top: 1px solid var(--color-black);
    border-left: 1px solid var(--color-black);
    z-index: 2;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25vw;
}

.featured-slider .swiper-pagination {
    left: 0;
    bottom: 0;
    width: 37.5vw;
    height: 4.7vw;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media only screen and (max-width: 768px) {
    .featured-slider {
        height: calc(100vh - 12.85vw);
        height: -webkit-calc(100vh - 12.85vw);
    }

    .featured-slider .left {
        position: absolute;
        width: 100%;
        height: calc(100% - 12.85vw);
        height: -webkit-calc(100% - 12.85vw);
        z-index: 2;
        pointer-events: none;
        border-right: 0;
    }

    .featured-slider .right {
        position: relative;
        width: 100%;
    }

    .featured-slider .button {
        padding: 0 4.65vw;
    }

    .featured-slider .left .button {
        pointer-events: visible;
        border-left: 0;
        border-right: 0;
    }

    .featured-slider .left .title {
        color: var(--color-white);
        max-width: 75vw;
    }

    .featured-slider .right .button {
        width: 100%;
        left: 0;
        right: unset;
        border-left: 0;
        border-right: 0;
    }

    .featured-slider .right .swiper .desktop {
        display: none;
    }

    .featured-slider .right .swiper .mobile {
        display: block;
    }

    .featured-slider .swiper-pagination {
        display: none;
    }
}
