.hot-cards_list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    overflow: visible;
    width: 100%;
    margin: 0 auto;
}

/* Базовые стили карточки */
.hot-cards_item {
    position: sticky;
    top: 125px; /* все одинаковый top */

    width: 100%;
    max-width: 870px;
    height: 420px;

    display: flex;
    align-items: center;
    gap: 30px;

    background: transparent;
    /* чтобы нижние не проступали */
    pointer-events: none;
}

/* Внутренние элементы должны принимать клики */
.hot-cards_item * {
    pointer-events: auto;
}

/* Визуальная структура */
.hot-cards_item-img {
    width: 420px;
    height: 420px;
    position: relative;
}

.hot-cards_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.hot-cards_item-img:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 40px;
}

.hot-cards_item-text,
.last_hot-cards_item-text {
    flex: 1;
    width: 420px;
    background-color: #fff;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hot-cards_item-text h3,
.last_hot-cards_item-text h3 {
    font-size: 32px;
    font-weight: 500;
    color: #5a6e3e;
}

.cardLetter {
    position: absolute;
    inset: 0;
    font-size: 150px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* ——————————————— */
/* ГЛАВНОЕ: перекрытие */
/* ——————————————— */

.hot-cards_item:nth-of-type(1) {
    z-index: 1;
}

.hot-cards_item:nth-of-type(2) {
    margin-left: 448px;
    z-index: 2; /* выше первого */
}

.hot-cards_item:nth-of-type(3) {
    margin-left: 448px;
    flex-direction: row-reverse;
    z-index: 3; /* выше второго */
}

.hot-cards_item:nth-of-type(3) .hot-cards_item-text {
    opacity: 0;
}

.hot-cards_item:nth-of-type(3) + .last_hot-cards_item-text {
    display: block;
    width: 420px;
    z-index: -1;
    position: relative;
    top: -306px;
    left: 450px;
}

@media screen and (max-width: 1366px) {
    .hot-cards_list {
        width: fit-content;
    }

    .hot-cards_item {
        height: 320px;
    }

    .hot-cards_item:nth-of-type(2),
    .hot-cards_item:nth-of-type(3) {
        margin-left: 0;
    }

    .hot-cards_item:nth-of-type(3) {
        flex-direction: row;
    }

    .hot-cards_item-img {
        width: 320px;
        height: 320px;
    }

    .hot-cards_item:nth-of-type(3) .hot-cards_item-text {
        opacity: 1;
    }

    .hot-cards_item:nth-of-type(3) + .last_hot-cards_item-text {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .hot-cards_item {
        top: 95px;
    }
}

@media screen and (max-width: 767px) {
    .hot-cards_list {
        gap: 16px 0;
    }

    .hot-cards_item {
        height: 450px;
        flex-direction: column;
        gap: 0;
        background-color: #fff;
        border-radius: 24px 24px 0 0;
    }

    .hot-cards_item-img:after {
        border-radius: 24px;
    }

    .hot-cards_item:nth-of-type(3) {
        flex-direction: column;
    }

    .hot-cards_item-img,
    .hot-cards_item-text, .last_hot-cards_item-text {
        width: 100%;
    }

    .hot-cards_item-img img {
        border-radius: 24px;
    }

    .hot-cards_item-text h3, .last_hot-cards_item-text h3 {
        font-size: 18px;
    }
}