.lguarantee {
    padding: clamp(26px, 6vw, 84px) 0;
}

.lguarantee__grid {
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr) minmax(0, 234px);
    gap: clamp(20px, 2.5vw, 48px);
    align-items: start;
}

.lguarantee__title {
    margin-bottom: 17px;
    color: #363636;
}

.lguarantee__title .accent,
.lguarantee__title b,
.lguarantee__title strong {
    color: var(--gold);
    font-weight: inherit;
}

.lguarantee__features {
    display: grid;
    gap: clamp(27px, 3vw, 44px);
}

.lguarantee__feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lguarantee__feature-text,
.lguarantee__note {
    font-size: clamp(18px, 1.75vw, 20px);
    line-height: 1.1;
    color: #363636;
}

.lguarantee__note {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lguarantee__media {
    display: grid;
}

.lguarantee__photo-img {
    display: block;
    width: 100%;
    height: auto;
}

.lguarantee__photo--1 {
    width: 100%;
}

.lguarantee__photo--2 {
    width: 80%;
    justify-self: end;
    margin-top: -212px;
    transform: translateX(50%);
}

.lguarantee__note-icon {
    display: inline-flex;
    margin-bottom: 12px;
    line-height: 0;
}

@media (width < 1440px) {
    .lguarantee__photo--2 {
        margin-top: -140px;
    }
}

@media (width < 1280px) {
    .lguarantee__grid {
        grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    }

    .lguarantee__note {
        grid-column: 1 / -1;
        max-width: 480px;
    }

    .lguarantee__photo--2 {
        transform: translateX(25%);
        margin-top: -200px;
    }
}

@media (width < 992px) {
    .lguarantee__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lguarantee__photo--1 {
        width: 100%;
    }

    .lguarantee__photo--2 {
        display: none;
    }
}
