.trust-marquee {
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 32s linear infinite;
  animation-delay: 900ms;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-track span {
  position: relative;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  position: absolute;
  right: -27px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  transform: translateY(-50%);
}

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

@media (max-width: 767px) {
  .trust-marquee {
    padding-block: 22px;
    padding-inline: 0;
  }

  .marquee-track {
    gap: 28px;
    animation: marquee 24s linear infinite;
    animation-delay: 900ms;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .marquee-track span::after {
    right: -16px;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .trust-marquee {
    overflow-x: auto;
  }

  .marquee-track {
    animation: none;
    width: 100%;
  }

  .marquee-track span:nth-child(n + 7) {
    display: none;
  }
}
