/* ==========================================================================
   Trust Bar — the smallest, quietest section on the page (by design).
   No photo, no cards — a single line of proof in motion.
   ========================================================================== */

.trust-bar {
  position: relative;
  background-color: var(--color-ink);
  border-top: 1px solid var(--color-graphite-line);
  border-bottom: 1px solid var(--color-graphite-line);
  padding-block: var(--space-4);
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  /* Fade the edges instead of hard-clipping items — reads as an intentional
     frame rather than a ticker that just runs out of room. */
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    black 64px,
    black calc(100% - 64px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    black 64px,
    black calc(100% - 64px),
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-slate);
  white-space: nowrap;
  padding-inline: var(--space-6);
}

/* Hairline divider — same visual language as borders/rules elsewhere,
   deliberately not a ticker-style bullet dot. */
.marquee-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: var(--color-graphite-line);
  flex-shrink: 0;
}
