/* ----- Main Container ----- */

.carousel-random-container {
    padding: 0;
}

.carousel-random-slides-container {
    position: relative;
}

@media screen and (max-width: 767px) {
    .carousel-random-container {
        padding: 0;
    }
}


/* ----- Slide List ----- */

.carousel-random-wrapper {
    overflow: hidden;
}

.carousel-random-wrapper .slides {
    display: flex;
    column-gap: 30px;
}

.carousel-random-wrapper .slide {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 100%;
}

.slide-transition {
    transition-timing-function: ease;
}


/* ---- Slide image ---- */

.carousel-random-wrapper .slide .image_container {
    display: block;
    aspect-ratio: 16 / 9;
    padding: 10px 10px 0 10px;
}

.carousel-random-wrapper .slide .image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}


/* ----- Slide Title ----- */
.carousel-random-wrapper .slide .slidetitle {
    margin-top: 10px;
    text-align: center;
    transition: all 0.5s ease;
    display: block;
}


/* ----- Navigation Bullets ----- */
.carousel-random-controls-bullets {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-random-controls-bullets .bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-random-controls-bullets .bullet.active,
.carousel-random-controls-bullets .bullet:hover {
    background-color: #000;
}