.carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    user-select: none;
}

.carousel__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.carousel__track {
    display: flex !important;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel__slide {
    flex: 0 0 100% !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.carousel__slide img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.carousel__indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    z-index: 5;
}

.carousel__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}