/* Marquee of client logos — lives inside the cases section, matching the live site */

.alfa-clients-track {
  overflow: hidden;
}

.alfa-clients-slider {
  display: flex;
  align-items: center;
  width: max-content;
  animation: alfa-marquee 30s linear infinite;
}

.alfa-client {
  flex: 0 0 224px;
  width: 224px;
  height: 157px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alfa-client img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

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

@media (prefers-reduced-motion: reduce) {
  .alfa-clients-slider {
    animation: none;
    flex-wrap: wrap;
  }
}