/* Pagination dots — Hero Splide (Figma 63-701) */
.se-hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 24px auto 0;
  list-style: none;
}

.se-hero-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s, background 0.3s;
}

.se-hero-dot.is-active {
  width: 32px;
  background: #E26402;
}

/* Empêche le track de déborder quand fade est actif */
#se-hero-splide .splide__track {
  overflow: hidden;
}

/* Avec un seul slide, masquer la pagination */
#se-hero-splide .splide__pagination--ltr:only-child {
  display: none;
}
