.acf-banner-slider-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.acf-banner-slider {
    width: 100%;
    position: relative;
}

.acf-banner-track {
    position: relative;
    width: 100%;
    min-height: 180px;
}

.acf-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    pointer-events: none;
}

.acf-banner-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.acf-banner-slide a,
.acf-banner-slide picture,
.acf-banner-slide img {
    display: block;
    width: 100%;
}

.acf-banner-image {
    height: auto;
    object-fit: cover;
}

.acf-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.acf-banner-arrow:hover {
    background: rgba(0, 0, 0, .7);
}

.acf-banner-prev {
    left: 20px;
}

.acf-banner-next {
    right: 20px;
}

.acf-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
}

.acf-banner-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    padding: 0;
}

.acf-banner-dot.is-active {
    background: #fff;
}

@media (max-width: 767px) {
    .acf-banner-arrow {
        width: 38px;
        height: 38px;
    }

    .acf-banner-prev {
        left: 10px;
    }

    .acf-banner-next {
        right: 10px;
    }

    .acf-banner-dots {
        bottom: 10px;
    }
}
