.hero-slider {
    width: 100%;
    border-radius: var(--radius-default);
    overflow: hidden;
    position: relative;
    margin-bottom: var(--space-lg);
}

.hero-slider__track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.hero-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.hero-slider__slide img {
    display: block;
    width: 100%;
    height: auto;
}

/* Dots */
.hero-slider__dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hero-slider__dot.is-active {
    background: #fff;
}

/* Desktop-only slider: visible on desktop, hidden on mobile */
.hero-slider--desktop-only { display: block; }
/* Mobile-only slider: hidden on desktop, visible on mobile */
.hero-slider--mobile-only  { display: none; }

@media (max-width: 767px) {
    .hero-slider {
        margin-top: -15px;
        border-radius: var(--radius-small);
    }
    .hero-slider--desktop-only { display: none; }
    .hero-slider--mobile-only  { display: block; }
}
