.ea-trust-features {
    background: var(--ea-trust-bg);
    color: var(--ea-trust-color);
    padding: var(--ea-trust-padding) 24px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    overflow: hidden;
}

.ea-trust-features__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--ea-trust-gap);
    max-width: var(--ea-trust-max);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.ea-trust-feature {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 27px;
    min-width: 0;
}

.ea-trust-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: currentColor;
}

.ea-trust-feature__icon svg {
    display: block;
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.ea-trust-feature__body {
    min-width: 0;
}

.ea-trust-feature__title {
    margin: 0 0 8px;
    color: var(--ea-trust-color);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
}

.ea-trust-feature__text {
    margin: 0;
    color: var(--ea-trust-muted);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: 0;
}

.ea-trust-features--compact {
    padding-top: 42px;
    padding-bottom: 42px;
}

.ea-trust-features--compact .ea-trust-feature__title {
    font-size: 22px;
}

.ea-trust-features--compact .ea-trust-feature__text {
    font-size: 17px;
}

@media (max-width: 1023px) {
    .ea-trust-features {
        padding: 42px 0;
    }

    .ea-trust-features__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 720px;
    }

    .ea-trust-feature {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 18px;
    }

    .ea-trust-feature__icon {
        width: 36px;
        height: 36px;
    }

    .ea-trust-feature__icon svg {
        width: 30px;
        height: 30px;
    }

    .ea-trust-feature__title {
        font-size: 20px;
    }

    .ea-trust-feature__text {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .ea-trust-features {
        padding: 36px 0;
    }

    .ea-trust-feature {
        align-items: flex-start;
    }

    .ea-trust-feature__title {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .ea-trust-feature__text {
        font-size: 16px;
    }
}
