.leasing-promo {
    position: relative;
    display: flex;
    min-height: 500px;
    border-radius: 18px;
    overflow: hidden;
    background: #0843af;
}

.leasing-promo :focus-visible {
    outline-color: #fff;
}

.leasing-promo__media {
    position: absolute;
    inset: 0;
}

.leasing-promo__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leasing-promo__body {
    position: relative;
    padding: 31px 25px 25px;
}

.leasing-promo__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: #fff;
}

.leasing-promo__slide {
    position: absolute;
    inset: 0;
}

.leasing-promo__slide[hidden] {
    display: none;
}

.leasing-promo__eyebrow {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.leasing-promo__eyebrow b {
    font-weight: 700;
}

.leasing-promo__rule {
    width: 167px;
    max-width: 60%;
    height: 3px;
    background: #ec6910;
}

.leasing-promo__eyebrow + .leasing-promo__rule {
    margin-top: 20px;
}

.leasing-promo__title {
    margin: 25px 0 0;
    max-width: 600px;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: pre-line;
}

.leasing-promo__text {
    margin: 17px 0 0;
    max-width: 533px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.leasing-promo__figure {
    margin: 0;
    font-size: 96px;
    font-weight: 900;
    line-height: 1.21;
    color: #0946b3;
    -webkit-text-stroke: 4px #fff;
    paint-order: stroke fill;
}

@supports not (-webkit-text-stroke: 4px #fff) {
    .leasing-promo__figure {
        color: #fff;
    }
}

.leasing-promo__controls {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: auto;
    padding: 32px 25px 25px;
}

.leasing-promo__nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.leasing-promo__arrow {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

.leasing-promo__arrow:hover {
    opacity: .85;
    transform: scale(1.08);
}

.leasing-promo__arrow:active {
    transform: scale(.95);
}

.leasing-promo__arrow::after {
    content: '';
    position: absolute;
    inset: -4px;
}

.leasing-promo__arrow img {
    display: block;
    width: 100%;
    height: 100%;
}

.leasing-promo__arrow--prev img {
    transform: rotate(180deg);
}

.leasing-promo__dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.leasing-promo__dot {
    position: relative;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    transition: background-color .2s ease;
}

.leasing-promo__dot:hover {
    background: #fff;
}

.leasing-promo__dot.is-active {
    background: #ec6910;
}

.leasing-promo__dot::after {
    content: '';
    position: absolute;
    inset: -8px -4px;
}

@media (max-width: 1200px) {
    .leasing-promo__media img {
        object-position: left center;
    }
}

@media (max-width: 992px) {
    .leasing-promo__title {
        font-size: 32px;
    }

    .leasing-promo__figure {
        font-size: 72px;
        -webkit-text-stroke-width: 3px;
    }
}

@media (max-width: 768px) {
    .leasing-promo__body {
        padding: 24px 20px 28px;
    }

    .leasing-promo__controls {
        padding: 32px 20px 28px;
    }
}

@media (max-width: 576px) {
    .leasing-promo__title {
        font-size: 24px;
        white-space: normal;
    }

    .leasing-promo__text {
        font-size: 15px;
    }

    .leasing-promo__figure {
        font-size: 52px;
        -webkit-text-stroke-width: 2px;
    }

    .leasing-promo__controls {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (hover: none) {
    .leasing-promo__arrow:hover {
        opacity: 1;
        transform: none;
    }

    .leasing-promo__dot:hover {
        background: #d9d9d9;
    }

    .leasing-promo__dot.is-active:hover {
        background: #ec6910;
    }
}

@media (prefers-reduced-motion: reduce) {
    .leasing-promo__arrow:hover,
    .leasing-promo__arrow:active {
        transform: none;
    }
}
