/**** Carousel Slide Box 1  ****/
.carousel-container {
  position: relative;
  max-width: 1300px;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 .4rem 2rem rgba(0, 0, 0, 0.8);
  /*border-radius: .5rem;*/
  border: 0.6rem solid #250614;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  /*align-items: center;*/
  background: transparent;
  justify-content: space-around;
  z-index: 0;
  pointer-events: auto;
}

.carousel-slide-illustration {
  position: relative;
  background: transparent;
}

.carousel-slide-illustration img {
  max-width: 1300px;
  width: 100%;
  min-height: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-slide-description {
  position: absolute;
  display: block;
  min-height: 100%;
  height: auto;
  flex-direction: column;
  padding-right: 1.5rem;
  top: 10%;
  left: 50%;
  box-sizing: border-box;
}

.carousel-slide-description h1 {
  display: block;
  min-height: 3rem;
  padding-top: 1.5rem;
  line-height: 2.5rem;
  font-weight: bold;
  font-size: var(--step-4);
  color: #ffffff;
  text-shadow: -0.1rem -0.1rem 0 #4a0224;
  text-align: left;
  margin: 0;
  transition: transform 0.4s ease;
}

.carousel-slide-description h2 {
  display: block;
  min-height: 3rem;
  padding-top: 1.5rem;
  line-height: 2.5rem;
  font-weight: bold;
  font-size: var(--step-3);
  color: #ffffff;
  text-shadow: -0.1rem -0.1rem 0 #4a0224;
  text-align: left;
  margin: 0;
  transition: transform 0.4s ease;
}

.carousel-slide-description h3 {
  font-weight: bold;
  font-size: var(--step-2);
  color: #ffffff;
  text-shadow: -0.1rem -0.1rem 0 #4a0224;
  text-align: left;
  margin: 0;
  transition: transform 0.4s ease;
}

.carousel-slide-description p {
  display: block;
  min-height: 7.5rem;
  padding-top: 1.5rem;
  line-height: 2.5rem;
  font-weight: normal;
  font-size: var(--step-0);
  letter-spacing: 0px;
  text-align: left;
  color: #ffffff;
  text-shadow: -0.1rem -0.1rem 0 #4a0224;
  margin: 0;
}

.boutonPoussoir {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  margin-bottom: 2rem;
}

.boutonPoussoir a {
  font-weight: normal;
  font-size: var(--step-0); /* ≈ 16–20px */
  color: white;
  letter-spacing: 0px;
  text-align: center;
  background-color: #981653;
  padding: 0.9rem 1.6rem;
  margin-bottom: 1rem;
  border-radius: 4rem;
  text-decoration: none;
  border: .3rem solid #fff;
  transition: all 0.2s ease-in-out;
}

.boutonPoussoir a:hover {
  background-color: #981653;
  transform: scale(1.2);
}

.carousel-nav {
  position: absolute;
  display: none;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--step-2);
  background: transparent;
  color: #ffffff70;
  border: none;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.carousel-container:hover .carousel-nav {
  display: block;
}

.carousel-nav:hover {
  background: transparent;
  color: #ffffff;
}

.carousel-nav.prev {
  padding: 0.6rem 0.9rem 0.6rem 0.5rem;
  left: 0.1rem;
}

.carousel-nav.next {
  padding: 0.6rem 0.5rem 0.6rem 0.9rem;
  right: 0.8rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.carousel-dots button {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.carousel-dots button.active {
  background: #ffffff;
}