.client-hero-slideshow,
.client-hero-slides {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.client-hero-slideshow .client-hero-slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-hero-slideshow [data-hero-slide] {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.client-hero-slideshow [data-hero-slide].is-active {
    opacity: 1;
}

.client-hero-slideshow.is-interactive {
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    user-select: none;
}

.client-hero-slideshow.is-interactive.is-dragging {
    cursor: grabbing;
}

.client-hero-dots {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.client-hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1.5px solid rgba(255, 255, 255, .85);
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
}

.client-hero-dots button[aria-current="true"] {
    background: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .client-hero-slideshow [data-hero-slide] {
        transition: none;
    }
}
