.testimonial-vertical {
  padding: 80px 64px;
  overflow: hidden;
}

.testimonial-vertical .testimonial-wrapper {
  background-color: var(--jaspe);
  border-radius: 16px;
  padding-right: 40px;
}

.testimonial-vertical .testimonial-contents {
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-vertical .testimonial-contents h2 {
  font-size: 80px;
  font-weight: 400;
  line-height: 98%;
  margin-bottom: 20px;
}

.testimonial-vertical .testimonial-contents p {
  font-size: 18px;
  line-height: 1.6;
}

.testimonial-vertical .testimonial-column {
  height: 800px;
  position: relative;
}

.testimonial-vertical .testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.testimonial-author {
    margin-top: 24px;
}
.testimonial-contents a {
    width: fit-content;
}
/* Premier colonne : bas vers haut */
.testimonial-vertical .testimonial-first .testimonial-track {
  animation: scroll-up 20s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Deuxième colonne : haut vers bas */
.testimonial-vertical .testimonial-second {
  margin-top: 120px;
}

.testimonial-vertical .testimonial-second .testimonial-track {
  animation: scroll-down 20s linear infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Pause au survol */
.testimonial-vertical .testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-vertical .testimonial-slide {
  padding: 40px;
  background-color: #fff;
  border-radius: 16px;
  min-height: 350px;
  flex-shrink: 0;
  width: 100%;
  box-shadow: 0 0 10px -9px #000;
}

@media(max-width: 1400px) {
    .testimonial-vertical .testimonial-slide {
          padding: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
  .testimonial-vertical .testimonial-wrapper {
    padding: 20px;
  }
  .testimonial-vertical .testimonial-contents h2 {
    font-size: 48px;
  }

  .testimonial-vertical .testimonial-column {
    height: 440px;
    overflow: hidden;
  }

  .testimonial-vertical .testimonial-second {
    margin-top: 60px;
  }
  .testimonial-vertical {
    padding: 0;
  }
  .testimonial-vertical .testimonial-wrapper {
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .testimonial-vertical .testimonial-vertical {
    padding: 40px 20px;
  }

  .testimonial-vertical .testimonial-wrapper {
    padding-right: 20px;
  }

  .testimonial-vertical .testimonial-contents {
    padding: 24px;
  }

  .testimonial-vertical .testimonial-contents h2 {
    font-size: 36px;
  }

  .testimonial-vertical .testimonial-column {
    margin-bottom: 20px;
  }

  .testimonial-vertical .testimonial-second {
    margin-top: 0;
  }

  .testimonial-vertical .testimonial-slide {
    min-height: 250px;
    padding: 24px;
  }
}
