
.trust-bar > .container {
  max-width: none;
  padding-inline: calc(var(--space-2) + clamp(20px, 4.5vw, 72px));
}

@media (min-width: 768px) {
  .trust-bar > .container {
    padding-inline: calc(var(--space-3) + clamp(20px, 4.5vw, 72px));
  }
}

.trust-bar-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding-block: var(--space-5);
}

[id="0yq98e0s"] {
  min-height: 83px;
}

.trust-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 0 1 auto;
  min-width: 0;
}

.trust-block-note {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-secondary);
  margin: 0;
}

.trust-divider {
  background: var(--border-subtle);
  height: 1px;
  width: 100%;
  flex: none;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  min-width: 0;
  flex: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}

.trust-track {
  display: flex;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-7);
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--ink-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.trust-item svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--data-signal);
}

.trust-list.is-clone {
  display: none;
}

.trust-marquee-toggle {
  position: absolute;
  left: 0;
  top: calc(50% - 22px);
  width: 100%;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.trust-bar.is-animated .trust-track {
  width: max-content;
  animation: trust-scroll 40s linear infinite;
}

.trust-bar.is-animated .trust-list {
  flex-wrap: nowrap;
  margin-inline-end: var(--space-7);
}

.trust-bar.is-animated .trust-list.is-clone {
  display: flex;
}

.trust-bar.is-animated .trust-item {
  white-space: nowrap;
}

.trust-bar.is-animated .trust-marquee:hover .trust-track,
.trust-bar.is-animated .trust-marquee:focus-within .trust-track {
  animation-play-state: paused;
}

.trust-bar.is-paused .trust-track {
  animation-play-state: paused;
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar.is-animated .trust-track {
    animation: none;
  }
}

@media (min-width: 768px) {
  .trust-bar-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
  }

  .trust-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }
}

