.carousel-container {
    width: 100%;
    max-width: 2000px;
    height: auto;
    aspect-ratio: 2000/522;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* dots */

.dots {
    position: absolute;
    bottom: 18px;
    width: 100%;
    text-align: center;
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}