.features-list {}
.features-list__item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.features-list__icon-wrapper {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    position: relative;
}
.features-list__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: contain;
}
.features-list__desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features-list__title {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
}
.features-list__text {
    line-height: 1.25;
}
.features-list__text p + p {
    margin-top: 0.7em;
}
@media screen and (min-width: 768px) {
    .features-list__item {
        gap: 32px;
        margin-bottom: 64px;
    }
    .features-list__icon-wrapper {
        width: 48px;
        height: 48px;
    }
    .features-list__title {
        font-size: 24px;
    }
}