
/* section-carousel */
.section-carousel {
    --size-btn-block: 4.25rem;
}
.section-carousel__slider {
    position: relative;
}
.section-carousel__btns {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: var(--offset-small);
    z-index: 1;
    pointer-events: none;
}
.section-carousel__btns > * {
    pointer-events: all;
}

@media screen and (max-width: 767px) {
    .section-carousel {
        --size-btn-block: 3rem;
    }
    .section-carousel__btns {
        bottom: auto;
        top: var(--offset-secondary);
    }
}