.landing-slider {
    position: relative;
}

.landing-slider__viewport {
    overflow: hidden;
    width: 100%;
}

.landing-slider__track {
    display: flex;
    gap: 1rem;
    direction: ltr;
    will-change: transform;
    transition: transform 0.35s ease;
}

.landing-slider__slide {
    flex: 0 0 calc(82% - 0.35rem);
    max-width: 22rem;
    overflow: hidden;
    direction: rtl;
}

@media (min-width: 640px) {
    .landing-slider__slide {
        flex-basis: calc(46% - 0.5rem);
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .landing-slider__slide {
        flex-basis: calc(33.333% - 0.7rem);
    }
}

.landing-slider__nav {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.landing-slider__nav:hover:not(:disabled) {
    border-color: #fdba74;
    color: #ea580c;
    background: #fff7ed;
}

.landing-slider__nav:disabled {
    opacity: 0.4;
    cursor: default;
}

.landing-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.landing-slider__dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.landing-slider__dot.is-active {
    width: 1.1rem;
    background: #ea580c;
}
