.image-slider--section {
    padding-left: var(--theme-content-padding);
    padding-right: var(--theme-content-padding);
    padding-bottom: var(--theme-content-padding);
}

.image-slider--slide {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.image-slider--image,
.image-slider--vimeo,
.image-slider--video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-slider--vimeo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slick-slider .image-slider--slide {
    display: block !important;
}

.with-mobile-image .image-slider--image.dt-mod {
    display: none;
}

.with-mobile-image .image-slider--image.mobile-mod {
    display: block;
}

.image-slider--slider > .image-slider--slide:not(:first-child) {
    display: none;
}

.image-slider--arrows {
    margin-bottom: 15px;
    display: flex;
    gap: 6px;
}

.image-slider--section .slick-arrow {
    width: 32px;
    height: 32px;
    position: static;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 50%;
    background-color: var(--theme-lt-green);
    background-repeat: no-repeat;
    background-position: center;
    transform: none;
}

.image-slider--section .slick-prev {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4723 6.52845L0.562384 6.52845M0.562384 6.52845L6.5286 12.4947M0.562384 6.52845L6.5286 0.562234' stroke='%23C5A458' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.image-slider--section .slick-next {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.562383 6.52917H16.4723M16.4723 6.52917L10.5061 0.562957M16.4723 6.52917L10.5061 12.4954' stroke='%23C5A458' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (min-width: 768px) {
    .image-slider--section {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        position: relative;
    }

    .image-slider--arrows {
        position: absolute;
        z-index: 1;
        top: 45px;
        left: var(--theme-content-padding);
        opacity: .6;
    }

    .image-slider--arrows:hover {
        opacity: 1;
    }
    
    .with-mobile-image .image-slider--image.dt-mod {
        display: block;
    }
    
    .with-mobile-image .image-slider--image.mobile-mod {
        display: none;
    }
}