/**
 * Home hero carousel slide dots — plain CSS so positioning works even when
 * Tailwind utilities are missing from the built bundle (e.g. classes only in PHP strings).
 */

.hero-carousel-dots-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3rem;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.25rem;
    pointer-events: none;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .hero-carousel-dots-wrap {
        bottom: 3.5rem;
    }
}

@media (min-width: 768px) {
    .hero-carousel-dots-wrap {
        bottom: 4rem;
    }
}

.hero-carousel-dots-wrap.hero-carousel-dots-wrap--overlay {
    bottom: 8rem;
}

@media (min-width: 640px) {
    .hero-carousel-dots-wrap.hero-carousel-dots-wrap--overlay {
        bottom: 9rem;
    }
}

@media (min-width: 768px) {
    .hero-carousel-dots-wrap.hero-carousel-dots-wrap--overlay {
        bottom: 10rem;
    }
}

.hero-carousel-dots-wrap .hero-carousel-dots-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    pointer-events: auto;
}

.hero-carousel-dots-wrap .hero-carousel-dot {
    box-sizing: border-box;
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    flex-shrink: 0;
}

.hero-carousel-dots-wrap .hero-carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.hero-carousel-dots-wrap .hero-carousel-dot[aria-current='true'] {
    background-color: #fff;
    box-shadow: 0 0 0 1px #fff;
}
