/* ── Banner Carousel ─────────────────────────────────── */

.banner-carousel {
    position: relative;
    overflow: hidden;
    min-height: 64px;
    margin-bottom: 1.5rem;
    background: var(--primary);
}

.banner-carousel__track {
    display: flex;
    min-height: 64px;
    transition: transform 0.5s ease;
}

.banner-carousel__slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .25rem .75rem;
    padding: 0.5rem 2.5rem;
    box-sizing: border-box;
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
}

.banner-carousel__title {
    font-weight: 700;
}

.banner-carousel__desc {
    opacity: 0.9;
}

.banner-carousel__link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    margin-left: .25rem;
}

.banner-carousel__link:hover {
    opacity: 0.8;
}

.banner-carousel__prev,
.banner-carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 .5rem;
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.banner-carousel__prev:hover,
.banner-carousel__next:hover {
    opacity: 1;
}

.banner-carousel__prev { left: 0; }
.banner-carousel__next { right: 0; }

.banner-carousel__dots {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.banner-carousel__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.banner-carousel__dot[aria-selected="true"] {
    background: #fff;
}

.banner-carousel__live {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .banner-carousel__slide {
        padding: .5rem 2rem;
        font-size: 0.8rem;
    }
}
