.trusted-technologies {
  width: min(100%, 80vw);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.trusted-technologies__inner {
  display: grid;
  gap: 1.25rem;
}

.trusted-technologies h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.trusted-technologies__marquee {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.trusted-technologies__track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: trusted-technologies-scroll 28s linear infinite;
}

.trusted-technologies__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(8rem, 14vw, 12rem);
  min-height: 3.25rem;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 700;
  white-space: nowrap;
}

.trusted-technologies__marquee:hover .trusted-technologies__track {
  animation-play-state: paused;
}

@keyframes trusted-technologies-scroll {
  to {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-technologies__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}
