.overflow-hidden{ overflow-x:hidden; }



.anim-splitflap {
  display: inline-flex;
  flex-wrap: nowrap;            /* empêche le retour à la ligne */
  font-variant-numeric: tabular-nums;
  line-height: 1;
  /* pas de gap */
}

.anim-splitflap__slot {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1em;
  min-width: 1ch;               /* largeur d'un chiffre, ni plus ni moins */
  /* pas de background, pas de border-radius */
}

.anim-splitflap__track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.anim-splitflap__cell {
  display: block;
  height: 1em;
  line-height: 1em;
  text-align: center;
  /* pas de padding */
}
/* Pliure centrale typique des split-flap */
.anim-splitflap__slot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0px;
  background: var(--brt-blue);
  pointer-events: none;
  z-index: 1;
}


[data-anim="scrollCarousel"] {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.carousel-track {
  will-change: transform;
}

.carousel-track__item{
	height: 100%;
  opacity: 0.2; /* état initial avant JS */
  transition: opacity 0.3s ease; /* optionnel — lisse le changement */
}