/* ── SCOPED RESET ────────────────────────────────────────── */
.ccs-tb-wrap,
.ccs-tb-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── TRUST BAR WRAPPER ───────────────────────────────────── */
.ccs-tb-wrap {
  border-bottom: 1px solid #d0d8e0;
  padding: 18px 24px;
  width: 100%;
}

/* ── INNER CONTAINER ─────────────────────────────────────── */
.ccs-tb-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* ── EACH ITEM ───────────────────────────────────────────── */
.ccs-tb-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── ICON CIRCLE ─────────────────────────────────────────── */
.ccs-tb-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ccs-tb-icon i,
.ccs-tb-icon svg {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

/* ── TEXT ────────────────────────────────────────────────── */
.ccs-tb-text {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.2;
}
.ccs-tb-text small {
  display: block;
  font-weight: 400;
  font-size: .75rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* Tablet: tighten gap */
@media (max-width: 960px) {
  .ccs-tb-inner {
    gap: 24px;
  }
}

/* Large mobile: 2×3 grid-like wrap, tighter gap */
@media (max-width: 600px) {
  .ccs-tb-wrap {
    padding: 16px 18px;
  }
  .ccs-tb-inner {
    gap: 18px;
    justify-content: flex-start;
  }
  .ccs-tb-item {
    flex: 0 0 calc(50% - 9px);
  }
}

/* Small mobile: full-width stacked items */
@media (max-width: 380px) {
  .ccs-tb-inner {
    gap: 14px;
  }
  .ccs-tb-item {
    flex: 0 0 100%;
  }
}
