.section10-section {
  padding: 60px 20px;
  overflow-x: hidden;
}

.section10-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.section10-texte {
  width: 100%;
}

.section10-titre {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--orange-main);
  font-weight: bold;
  text-align: center;
}

.section10-legende {
  font-weight: bold;
  align-self: center;
  text-align: center;
}

.section10-texte p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.section10-images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  /* ou flex-start, selon l’alignement souhaité */
  gap: 20px;
  flex-wrap: nowrap;
  /* Pas de retour à la ligne */
  overflow-x: auto;
  /* Permet le scroll horizontal si besoin */
  width: 100%;
  box-sizing: border-box;
}

.image-large {
  height: auto;
  max-height: 200px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  /* Pour ne pas réduire l’image si l’espace est petit */
}

@media (max-width: 768px) {
  .section10-images {
    flex-wrap: nowrap;
    overflow-x: auto;
    /* Scroll horizontal sur mobile */
  }

  .image-large {
    max-height: 150px;
  }
}