.logos-slider {
  animation: none !important;
  width: 100% !important;
  transform: none !important;
  overflow: hidden;
}

.logos-slider__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logos-marquee var(--logos-duration, 40s) linear infinite;
}

.logos-slider__row,
.logos-slider__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 48px;
  max-height: none;
  margin: 0;
  padding: 12px 24px;
  transform: none !important;
}

.logos-slider__logo {
  display: block;
  width: 160px;
  height: 72px;
  max-width: 160px !important;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: none;
  opacity: 1;
}

@media (min-width: 768px) {
  .logos-slider__logo {
    width: 220px;
    height: 96px;
    max-width: 220px !important;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .logos-slider__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}
