.listingpilot-editorial,
.listingpilot-editorial * {
    box-sizing: border-box;
}

.listingpilot-editorial {
    --lp-secondary-x: -18px;
    --lp-secondary-y: -34px;
    --lp-stamp-x: -22px;
    --lp-stamp-y: -22px;
    width: 100%;
}

.lp-editorial__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    margin-inline: auto;
    width: 100%;
}

.lp-editorial--images_right .lp-editorial__figures {
    order: 2;
}

.lp-editorial--images_right .lp-editorial__body {
    order: 1;
}

.lp-editorial--text_only .lp-editorial__inner,
.lp-editorial--images_only .lp-editorial__inner {
    grid-template-columns: minmax(0, 1fr);
}

.lp-editorial--images_only .lp-editorial__figures {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
}

.lp-editorial__figures {
    position: relative;
    width: 100%;
}

.lp-editorial__image {
    display: block;
    margin: 0;
    overflow: hidden;
    background: #eef2f5;
}

.lp-editorial__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.lp-editorial--image-zoom .lp-editorial__image:hover img {
    transform: scale(1.045);
}

.lp-editorial__image-main {
    box-shadow: 0 18px 45px rgba(18, 33, 46, 0.16);
}

.lp-editorial__image-secondary {
    position: absolute;
    z-index: 2;
    width: 46%;
    border: 5px solid #fff;
    box-shadow: 0 22px 54px rgba(18, 33, 46, 0.22);
}

.lp-editorial--secondary-left .lp-editorial__image-secondary {
    left: var(--lp-secondary-x);
    right: auto;
}

.lp-editorial--secondary-right .lp-editorial__image-secondary {
    right: var(--lp-secondary-x);
    left: auto;
}

.lp-editorial--secondary-top .lp-editorial__image-secondary {
    top: var(--lp-secondary-y);
    bottom: auto;
}

.lp-editorial--secondary-bottom .lp-editorial__image-secondary {
    bottom: var(--lp-secondary-y);
    top: auto;
}

.lp-editorial__stamp {
    position: absolute;
    z-index: 3;
    display: grid;
    place-content: center;
    width: 108px;
    height: 108px;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(229, 80, 58, 0.28);
}

.lp-editorial--stamp-left .lp-editorial__stamp {
    left: var(--lp-stamp-x);
    right: auto;
}

.lp-editorial--stamp-right .lp-editorial__stamp {
    right: var(--lp-stamp-x);
    left: auto;
}

.lp-editorial--stamp-top .lp-editorial__stamp {
    top: var(--lp-stamp-y);
    bottom: auto;
}

.lp-editorial--stamp-bottom .lp-editorial__stamp {
    bottom: var(--lp-stamp-y);
    top: auto;
}

.lp-editorial__stamp strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.lp-editorial__stamp span {
    display: block;
    margin-top: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.15;
    text-transform: uppercase;
}

.lp-editorial__body {
    min-width: 0;
}

.lp-editorial__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lp-editorial__title {
    margin: 14px 0 0;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.05;
}

.lp-editorial__description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.65;
}

.lp-editorial__description > :first-child {
    margin-top: 0;
}

.lp-editorial__description > :last-child {
    margin-bottom: 0;
}

.lp-editorial__values {
    display: grid;
    margin-top: 30px;
}

.lp-editorial__value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: inherit;
    text-decoration: none;
}

.lp-editorial--features-cards .lp-editorial__value {
    padding: 16px;
    border: 1px solid rgba(16, 47, 67, .08);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(18, 33, 46, .06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lp-editorial--features-cards .lp-editorial__value-link:hover,
.lp-editorial--features-cards .lp-editorial__value-link:focus {
    transform: translateY(-2px);
    border-color: rgba(16, 47, 67, .16);
    box-shadow: 0 16px 34px rgba(18, 33, 46, .1);
}

.lp-editorial__value-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    line-height: 1;
}

.lp-editorial__value-icon svg,
.lp-editorial__value-icon i {
    display: block;
    width: 23px;
    height: 23px;
}

.lp-editorial__value-copy {
    display: block;
    min-width: 0;
}

.lp-editorial__value-title {
    display: block;
    font-size: 17.5px;
    font-weight: 700;
    line-height: 1.25;
}

.lp-editorial__value-text {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.55;
}

.lp-editorial__button-wrap {
    display: flex;
}

.lp-editorial__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    border: 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lp-editorial__button:hover,
.lp-editorial__button:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.lp-editorial__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.lp-editorial__button-icon svg,
.lp-editorial__button-icon i {
    width: 1em;
    height: 1em;
}

@media (max-width: 920px) {
    .lp-editorial__inner {
        grid-template-columns: 1fr;
    }

    .lp-editorial--mobile-images_first .lp-editorial__figures {
        order: 1;
    }

    .lp-editorial--mobile-images_first .lp-editorial__body {
        order: 2;
    }

    .lp-editorial--mobile-content_first .lp-editorial__figures {
        order: 2;
    }

    .lp-editorial--mobile-content_first .lp-editorial__body {
        order: 1;
    }

    .lp-editorial__figures {
        max-width: 560px;
    }

    .lp-editorial--secondary-right .lp-editorial__image-secondary {
        right: max(var(--lp-secondary-x), 0px);
    }

    .lp-editorial--secondary-left .lp-editorial__image-secondary {
        left: max(var(--lp-secondary-x), 0px);
    }
}

@media (max-width: 520px) {
    .lp-editorial__value {
        gap: 12px;
    }

    .lp-editorial__stamp {
        width: 82px;
        height: 82px;
    }

    .lp-editorial__stamp strong {
        font-size: 23px;
    }

    .lp-editorial__stamp span {
        font-size: 9px;
    }

    .lp-editorial__image-secondary {
        border-width: 4px;
    }
}
