.flash-info-ticker {
  background: transparent; /* Fond transparent */
  color: #0f4c9c;
  overflow: hidden;
  padding: 10px;
  display: flex;
  align-items: center;
}

.flash-info-ticker .label {
  font-weight: bold;
  margin-right: 10px;
  color: #cfa406;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap; /* tout sur une seule ligne */
  animation: ticker var(--speed, 120s) linear infinite;
  animation-delay: 0s; /* démarre immédiatement */
}

.ticker-item {
  display: inline-block;
  margin-right: 50px; /* espace entre les articles */
}

.ticker-item a {
  color: #0f4c9c;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

@keyframes ticker {
  0% { transform: translateX(0); }   /* commence hors écran à droite */
  100% { transform: translateX(-100%); } /* finit hors écran à gauche */
}
