/* ─── Hero carousel composition ───────────────────────────────────────
   Wrapper for a fade-mode carousel of full-bleed image heroes
   (blocks/hero-carousel.html). Overlays the dots on the image and re-tints
   them for a dark surface. */
.hzo-hero-carousel .hzo-carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--space-md);
    margin: 0;
    z-index: 2;
    --carousel-dot-color: var(--carousel-dot-on-image, rgba(255, 255, 255, 0.45));
    --carousel-dot-active-color: var(--carousel-dot-active-on-image, #fff);
}
.hzo-hero-carousel .hzo-carousel__toggle {
    position: absolute;
    right: var(--space-md);
    bottom: var(--space-md);
    margin: 0;
    z-index: 2;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius-full);
}
