/* ===== TrustBadge — icon + text row ===== */
/* Direction/alignment come from inheritable custom props the parent
   TrustBadges section sets per its `layout` prop (row vs stacked). */
.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge {
  display: flex;
  flex-direction: var(--badge-dir, row);
  align-items: var(--badge-cross, flex-start);
  gap: var(--space-sm);
  font-family: var(--font-body);
  color: inherit;
  text-align: var(--badge-text-align, left);
}

.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge--link {
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge--link:hover {
  opacity: 0.7;
}

.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge__text {
  display: flex;
  flex-direction: column;
  align-items: var(--badge-text-cross, flex-start);
  gap: 4px;
}

.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge__title {
  font-size: var(--text-small);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.cc_pSmp65GtZr_kCj2Y5PR1G .ethm-badge__desc {
  font-size: var(--text-small);
  line-height: 1.5;
  color: var(--color-text-muted);
}
