.embla {
    overflow: hidden;
}
.embla__viewport {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.embla__container {
    display: flex;
    touch-action: pan-y pinch-zoom;
}
.embla__slide {
    flex: 0 0 fit-content;
    min-width: 0;
    padding-right: 12px;
}
.embla__dots {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.embla__dot {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    background-color: #e5e5e5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.embla__dot.is-selected {
    background-color: var(--color-base-orange);
}

@media (min-width: 744px) {
    .embla__slide {
        padding-right: 0;
    }
}