/* ================= LOGOS CLIENTS (bande de confiance) ================= */
.logos-clients {
  padding: 42px 0 36px;
  overflow: hidden;
}

.logos-clients__mot {
  font-family: var(--f-script);
  font-size: 30px;
  font-weight: 600;
  color: var(--terracotta);
  text-align: center;
  transform: rotate(-2deg);
  margin-bottom: 24px;
}

/* fenêtre du marquee : bords fondus + coupe du débordement */
.logos-clients__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

/* piste = 2 groupes identiques ; -50% = boucle parfaite */
.logos-clients__piste {
  display: flex;
  width: max-content;
  animation: logos-defile 35s linear infinite;
}
.logos-clients__marquee:hover .logos-clients__piste { animation-play-state: paused; }

.logos-clients__groupe {
  display: flex;
  align-items: center;
  flex: none;
}
.logos-clients__groupe li {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9a938c;
  white-space: nowrap;
}
/* petit point terracotta entre chaque nom */
.logos-clients__groupe li::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  margin: 0 28px;
  opacity: 0.85;
}

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

@media (prefers-reduced-motion: reduce) {
  .logos-clients__piste { animation: none; }
}

@media (max-width: 767px) {
  .logos-clients { padding: 34px 0 30px; }
  .logos-clients__mot { font-size: 26px; margin-bottom: 18px; }
  .logos-clients__groupe li { font-size: 13px; letter-spacing: 1.6px; }
  .logos-clients__groupe li::after { margin: 0 20px; }
}

@media (max-width: 479px) {
  .logos-clients__groupe li { font-size: 12px; }
  .logos-clients__groupe li::after { width: 6px; height: 6px; margin: 0 16px; }
}
