.carousel {
    color: var(--text-light) !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    background: #eee;
    padding: 0 .5rem;
}

.carousel-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    width: 100%;
    position: sticky;
    top: 25px;
    background: var(--bg-light);
    z-index: 2;
    isolation: isolate;
}

#slides {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    flex-grow: 1;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide:not(.active) {
    visibility: hidden;
}

