.image-scroll {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem;
  scroll-snap-type: x mandatory;
}

.image-scroll .section {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
}

.image-scroll img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
}

.custom-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding: 2rem 0;
  color: white;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  margin-top: 0;
}

.footer-column a {
  color: white;
  text-decoration: underline;
}

.apres-ski-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.apres-ski-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.apres-ski-video {
  flex: 1 1 40%;
  min-width: 250px;
  max-height: 300px;
  overflow: hidden;
}

.apres-ski-video video {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.infographie-container {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
}

.infographie-scroll {
  min-width: 600px; /* largeur du SVG */
  display: inline-block;
  padding: 0 1rem;
}



