.formexa-feature-box {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}
.formexa-feature-box__item {
    border-bottom: 1px solid #d9d9d9;
    cursor: pointer;
    padding: 26px 0;
    transition: color .3s ease, transform .3s ease;
}
.formexa-feature-box__item:first-child { padding-top: 0; }
.formexa-feature-box__item:hover,
.formexa-feature-box__item:focus-visible,
.formexa-feature-box__item.is-active { color: #151515; }
.formexa-feature-box__item:hover .formexa-feature-box__content,
.formexa-feature-box__item:focus-visible .formexa-feature-box__content,
.formexa-feature-box__item.is-active .formexa-feature-box__content { transform: translateX(10px); }
.formexa-feature-box__content { display: flex; gap: 22px; transition: transform .3s ease; }
.formexa-feature-box__number { color: #929292; font-size: 14px; line-height: 1.5; min-width: 24px; }
.formexa-feature-box__copy { flex: 1; }
.formexa-feature-box__title { color: #777; font-size: 23px; line-height: 1.2; margin: 0 0 10px; transition: color .3s ease; }
.formexa-feature-box__item:hover .formexa-feature-box__title,
.formexa-feature-box__item:focus-visible .formexa-feature-box__title,
.formexa-feature-box__item.is-active .formexa-feature-box__title { color: #151515; }
.formexa-feature-box__description { color: #666; font-size: 15px; line-height: 1.6; }
.formexa-feature-box__description p { margin: 0; }
.formexa-feature-box__preview { position: sticky; top: 120px; overflow: hidden; }
.formexa-feature-box__image { aspect-ratio: 4 / 3; display: block; height: auto; object-fit: cover; opacity: 1; width: 100%; }
@media (max-width: 1023px) {
    .formexa-feature-box { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 36px; }
}
@media (max-width: 767px) {
    .formexa-feature-box { display: flex; flex-direction: column-reverse; gap: 28px; }
    .formexa-feature-box__preview { position: relative; top: auto; width: 100%; }
    .formexa-feature-box__item { padding: 22px 0; }
    .formexa-feature-box__title { font-size: 20px; }
    .formexa-feature-box__description { font-size: 14px; }
}