.trust {
    width: 100%;
    padding: 2.2% 5% 2.4%;
    background: #fffaf3;
    border-top: 0.08rem solid rgba(124, 144, 125, 0.18);
    border-bottom: 0.08rem solid rgba(124, 144, 125, 0.18);
}

.trust__title {
    margin: 0 0 1.8% 0;

    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;

    color: #566b56;

    font-size: clamp(0.95rem, 1.35vw, 1.5rem);
    font-weight: 600;
}

.trust__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust__item {
    color: #566b56;

    font-size: clamp(0.65rem, 0.78vw, 0.9rem);
    font-weight: 500;
    white-space: nowrap;
}

.trust__item::before {
    content: "✓";
    margin-right: 0.35em;

    color: #566b56;
    font-weight: 700;
}

@media (max-width: 700px) {
    .trust__list {
        flex-wrap: wrap;
        gap: 1.2em;
        justify-content: center;
    }
}