/* 4a: trust content reads as one calm strip on the page, not a card wall.
   The list is a single soft band (surface-alt, rounded); items sit inline
   with a small accent icon and compact text. */

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges {
  width: 100%;
  padding: 1.25rem 0;
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__inner {
  max-width: var(--kombos-max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

/* ─── Head (optional) ──────────────────────────────── */

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__head {
  max-width: 42rem;
  margin-bottom: 1.125rem;
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__eyebrow {
  display: block;
  margin-bottom: 0.375rem;
  font-family: var(--font-label);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__desc {
  margin: 0.375rem 0 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.55;
  color: var(--color-text-secondary);
  text-wrap: pretty;
}

/* ─── Strip ────────────────────────────────────────── */

/* One soft band holding an even row of claims. A wrapping flex row with
   space-between pushed pairs to the edges and left a void down the middle —
   an explicit grid keeps the columns equal at every width. */
.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__list {
  list-style: none;
  margin: 0;
  padding: 1.375rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  background: var(--color-surface-alt);
  border-radius: var(--radius-tile);
}

/* Icon in its own column, title and text stacked beside it — so a long
   description wraps under the title instead of crowding it. */
.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 0.75rem;
  row-gap: 0.1875rem;
  align-items: start;
  padding: 0;
  border: none;
  min-width: 0;
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__icon-wrap {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  /* nudge the glyph onto the title's optical centre */
  padding-top: 0.0625rem;
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__icon {
  /* icons are 1em — font-size is the size control */
  font-size: 1.125rem;
  line-height: 1;
  color: var(--color-accent);
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__item-title {
  grid-area: title;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.cc_i1v7oqhf_eQPlftrtEQ .trust-badges__item-text {
  grid-area: text;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-label);
  line-height: 1.45;
  color: var(--color-text-muted);
  text-wrap: pretty;
}

/* ─── Responsive ───────────────────────────────────── */

@media (min-width: 640px) {
  .cc_i1v7oqhf_eQPlftrtEQ .trust-badges__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
  }
}

@media (min-width: 1024px) {
  .cc_i1v7oqhf_eQPlftrtEQ .trust-badges__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem 1.75rem;
  }

  /* All four sit on one row here, so an adjacent-sibling rule gives exactly
     three dividers — no stray border at a wrapped row's start. */
  .cc_i1v7oqhf_eQPlftrtEQ .trust-badges__item + .trust-badges__item {
    border-left: 1px solid var(--color-border);
    padding-left: clamp(1rem, 2vw, 1.75rem);
  }

  .cc_i1v7oqhf_eQPlftrtEQ .trust-badges__item:not(:last-child) {
    padding-right: clamp(1rem, 2vw, 1.75rem);
  }
}
