.conteneur {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ligne {
  display: flex;
  align-items: center;
  gap: 8px;
}

.piste {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.piste::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 85%;
  scroll-snap-align: start;
  text-align: left;
}

.carte {
  position: relative;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}

.imageConteneur {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--gris-clair);
}

.image {
  object-fit: cover;
}

.carteContenu {
  padding: 20px 24px 24px;
}

.carteTitre {
  font-family: var(--font-gotham);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vert-fonce);
}

.dimensions {
  display: inline-block;
  font-size: 13px;
  color: var(--gris-moyen);
  margin-top: 4px;
  margin-bottom: 8px;
}

.carteTexte {
  font-size: 15px;
  color: var(--gris-moyen);
  line-height: 1.5;
}

.fleche {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blanc);
  border: 1px solid var(--gris-clair);
  color: var(--vert-fonce);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fleche:hover:not(:disabled) {
  background: var(--vert-fonce);
  color: var(--blanc);
  transform: scale(1.05);
}

.fleche:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.fleche svg {
  width: 20px;
  height: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.point {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gris-clair);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pointActif {
  background: var(--vert-fonce);
  transform: scale(1.3);
}

@media (min-width: 640px) {
  .slide {
    flex: 0 0 60%;
  }
}

@media (min-width: 1024px) {
  .fleche {
    display: flex;
  }

  .slide {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
