/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-formation-gallery__wrap {
  width: 100%;
}
.s-formation-gallery__slider {
  width: 100%;
}
.s-formation-gallery__slider .splide__track {
  overflow: hidden;
}
.s-formation-gallery__slide {
  aspect-ratio: 840/400;
  overflow: hidden;
}
.s-formation-gallery__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-formation-gallery__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.s-formation-gallery__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--wp--preset--color--capucine);
  border: 0;
  cursor: pointer;
  color: var(--wp--preset--color--white);
  font-size: 1.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.s-formation-gallery__arrow:hover {
  background: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
}
.s-formation-gallery__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}