/* || Carousel */

.carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    /* width: var(--col-w-8); */
}
/* @media only screen and (max-width: 960px) {
    .carousel {
    width: var(--col-w-10);
}
}
@media only screen and (max-width: 640px) {
    .carousel {
    width: var(--col-w-12);
}
} */

.carousel__viewport {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.carousel__slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items:center;
    justify-content: center;
}

.carousel__slide img {
    width: 100%;
    height: auto;
    display: block;
    /* max-height: 800px; */
    object-fit: contain;
}

.carousel__viewport,
.carousel__slide {
    height: auto;
}

.carousel__nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 2;
    pointer-events: auto;
}

.carousel__nav--left {
    left: 0;
    cursor: w-resize;
}

.carousel__nav--right {
    right: 0;
    cursor: e-resize;
}
.carousel__counter {
    font-size: var(--fs-s);
}