.handy-embla-slider {
    position: relative;
    width: 100%;
}

.handy-embla-slider .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.handy-embla-slider .embla__container {
    display: flex;
}

.handy-embla-slider .embla__container > * {
    flex: 0 0 auto;
    min-width: 0;
    position: relative;
}

.handy-embla-slider .embla__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.handy-embla-slider .embla__pagination__dots {
    display: flex;
    gap: 0.5rem;
}

.handy-embla-slider .embla__pagination__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.handy-embla-slider .embla__pagination__dot.is-selected {
    background-color: #333;
}

.handy-embla-slider .embla__pagination__numbers {
    font-size: 0.875rem;
    color: #666;
}