.simple-carousel-box {
    position: relative;
    overflow: hidden
}

.simple-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    min-height: 90px; 
}

.simple-carousel-item {
    position: relative;
    min-width: 100%;
    height: 100%;
    /* flex-shrink: 0 */
}

.simple-carousel-item.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
} 

.simple-carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.simple-carousel-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(255 220 159 / .5);
    border: none;
    cursor: pointer;
    transition: all 0.3s
}

.simple-carousel-indicator.active {
    background: #ffd58c;
    width: 20px;
    border-radius: 5px
}