/* Trust strip — [tmphcm_trust_strip]. Row of trust signals. */

.tmtphcm-trust {
    --tmtphcm-t-accent: #ff6600;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    padding: 18px 16px;
    max-width: 920px;
    background: #fff7f0;
    border: 1px solid #ffe2cc;
    border-radius: 12px;
}

.tmtphcm-trust__item {
    flex: 1 1 160px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 6px 10px;
}

.tmtphcm-trust__item + .tmtphcm-trust__item {
    border-left: 1px solid #ffe2cc;
}

.tmtphcm-trust__icon {
    color: var(--tmtphcm-t-accent);
    line-height: 0;
}

.tmtphcm-trust__num {
    font-size: 26px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
}

.tmtphcm-trust__label {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.3;
}

/* On narrow screens: 2 per row, drop the divider so it doesn't look broken. */
@media (max-width: 560px) {
    .tmtphcm-trust {
        gap: 8px;
        padding: 14px 10px;
    }
    .tmtphcm-trust__item {
        flex-basis: calc(50% - 8px);
        min-width: 0;
    }
    .tmtphcm-trust__item + .tmtphcm-trust__item {
        border-left: 0;
    }
    .tmtphcm-trust__num {
        font-size: 22px;
    }
}
