.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--ds-space-4, 16px);
  padding: var(--ds-space-2, 8px) var(--ds-space-4, 16px);
  background: var(--ds-color-neutral-900, #1a1a1a);
  color: var(--ds-color-white, #fff);
  font-size: var(--ds-text-xs, 12px);
  line-height: var(--ds-line-tight, 1.35);
  min-height: 40px;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-bar__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #81c784;
}

.trust-bar__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trust-bar__label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.trust-bar__hint {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  text-align: center;
}

.trust-bar__url {
  font-family: var(--ds-font-mono, Consolas, monospace);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  word-break: break-all;
}

@media (max-width: 640px) {
  .trust-bar {
    flex-direction: column;
    gap: var(--ds-space-2);
    padding: var(--ds-space-3) var(--ds-space-4);
    text-align: center;
  }

  .trust-bar__hint {
    font-size: 11px;
  }
}
