/* ============================================================
   Global trust strip
   Markup: resources/views/frontend/inc/trust-badges.blade.php
   Mobile-first. Lists are spaced with padding (the site resets list margins).
   ============================================================ */

.tb { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.tb *, .tb *::before, .tb *::after { box-sizing: border-box; }
.tb-item { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 10px 12px; border-radius: 14px; }
.tb-icon { width: 36px; height: 36px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px; font-size: 14px; }
.tb-copy { min-width: 0; }
.tb-copy b { display: block; font-size: 13.5px; font-weight: 800; line-height: 1.3; }
.tb-copy small { display: block; font-size: 12px; line-height: 1.35; }

.tb--light .tb-item { border: 1px solid #e6ebf3; background: #fff; }
.tb--light .tb-icon { background: #ecfdf5; color: #0f766e; }
.tb--light .tb-copy b { color: #0f172a; }
.tb--light .tb-copy small { color: #64748b; }

.tb--dark .tb-item { border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .06); }
.tb--dark .tb-icon { background: rgba(94, 234, 212, .14); color: #5eead4; }
.tb--dark .tb-copy b { color: #fff; }
.tb--dark .tb-copy small { color: rgba(255, 255, 255, .7); }

@media (max-width: 379.98px) {
    .tb { grid-template-columns: minmax(0, 1fr); }
}
@media (min-width: 992px) {
    .tb { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .tb-item { padding: 12px 14px; }
}
