.mfo-key-differences {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 16px;
}
.mfo-key-differences__item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 0;
}
.mfo-key-differences__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(var(--contrast-2-rgb), 0.12);
    color: var(--contrast-2);
}
.mfo-key-differences__icon svg {
    width: 22px;
    height: 22px;
}
.mfo-key-differences__item span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--contrast);
    line-height: 1.25;
}
@media (max-width: 1024px) {
    .mfo-key-differences {
        flex-wrap: wrap;
        gap: 14px;
    }
    .mfo-key-differences__item {
        flex: 1 1 45%;
        min-width: 150px;
    }
}
@media (max-width: 767px) {
    .mfo-key-differences {
        flex-direction: column;
        gap: 14px;
    }
    .mfo-key-differences__item {
        width: 100%;
        flex: none;
    }
}
