/*
 * SBN Developer Notes.
 * Scope: homepage trust/proof strip.
 * Used by: templates/front-page.html.
 * Edit risk: low to medium; mostly visual but close to hero.
 * QA: mobile wrapping, icon/text alignment, spacing after hero.
 */

.sbn-trust {
    background: var(--sbn-cream);
    border-bottom: 1px solid rgba(195, 204, 210, 0.5);
    padding: 18px var(--sbn-dynamic-edge);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sbn-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sbn-ink);
    font-weight: 500;
}

.sbn-trust-divider {
    width: 1px;
    height: 18px;
    background: var(--sbn-mist);
}

@media (max-width: 760px) {
    .sbn-trust {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .sbn-trust-item {
        width: 100%;
    }

    .sbn-trust-divider {
        display: none;
    }
}
