.carousel {
    position: relative;
    margin: 0
}

.carousel .carousel-inner {
    padding: 0 0 45px;
}

.carousel .slick-track {
    display: flex !important;
    gap: 15px;
}

.carousel .item {
    height: inherit !important;
    background-color: var(--wp--preset--color--bg-light, #F8F5F0);
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.carousel .item:first-child {
    margin-left: -15px;
}

.carousel .item:last-child {
    margin-right: -15px;
}

.carousel .item .item-inner {
    position: relative;
}

.carousel .item .image-wrapper {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 65% 0 0;
}

.carousel .item .image-wrapper img {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 1px;
    height: 1px;
}

.carousel .item .content-wrapper {
    padding: 20px 30px;
}

.carousel .item .content-wrapper .title {
    color: var(--wp--preset--color--content, #898989);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.carousel .item .content-wrapper .sub-title {
    color: var(--wp--preset--color--primary, #BD9E77);
    font-size: 22px;
    font-weight: 500;
    margin: 15px 0 0;
}

.carousel .item .content-wrapper .teaser {
    font-size: 16px;
    color: var(--wp--preset--color--content, #898989);
    margin: 15px 0 0;
}

.carousel .item .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Navigation */

.carousel .gallery-slider-nav-arrow {
    z-index: 5;
    display: flex;
    position: absolute;
    top: calc(100% - 30px);
    width: 30px;
    height: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.15s linear;
}

html.no-touch .carousel .gallery-slider-nav-arrow:hover,
html.no-touch .carousel .gallery-slider-nav-arrow:focus {
    color: var(--wp--preset--color--secondary, #222222);
}

.carousel .gallery-slider-nav-arrow.arrow-prev {
    left: 0;
}

.carousel .gallery-slider-nav-arrow.arrow-next {
    right: 0;
}

.carousel ul.slick-dots {
    position: absolute;
    bottom: 14px;
    left: 45px;
    display: flex;
    width: calc(100% - 90px);
    padding: 0;
    margin: 0;
}

.carousel ul.slick-dots li {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg,#ffffff 0,#ffffff 50%,rgba(255,255,255,0.4) 50%,rgba(255,255,255,0.4) 100%);
    background-size: 200%;
    background-position: left center;
    font-size: 0;
    transition: all 0.15s;
    min-width: 20px;
    display: block;
    flex: auto;
}

.carousel ul.slick-dots .slick-active ~ li {
    background-position: right center;
}

.carousel ul.slick-dots li button {
    width: 100%;
    font-size: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

@media (min-width: 1200px) {

    .carousel .item {
        opacity: 0;
        transform: scale(0.5);
    }

    .carousel .item.slick-active {
        opacity: 1;
        transform: scale(1);
    }


}