* {
  --fau-light-blue: #1478e7;
  --fau-blue: #003366;
  /* background-color: #f5f7fa; */
 
}
/* 
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1em;
  overflow-x: hidden;
} */

.testimonial-container {
  max-width: 1440px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.testimonial-heading {
  color: #0e3b6e;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.testimonial-subheading {
  color: #1478e7;
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 3rem;
}

.testimonial-subheading span {
  font-weight: bold;
}

.slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  cursor: grab;
}

.slider-container:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
  min-height: 300px;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  max-width: 500px;
  padding: 0 20px;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(0.85);
  position: relative;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-quote {
  position: absolute;
  top: 0;
  left: 30px;
  z-index: -1;
}

.testimonial-quote-end {
  position: absolute;
  bottom: 0;
  right: 30px;
  z-index: -1;
}

.testimonial-content {
  color: var(--fau-blue);
  font-size: 1.2em;
  line-height: 1.5em;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  min-height: 150px;
  text-align: left;
  width: 100%;
}

.testimonial-footer {
  /* padding: 2rem; */
  font-size: 1.2rem;
}

.testimonial-course {
  color: #CC0000;
  /* font-weight: bold; */
  border-top: 1px solid #ccc;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  padding-top: 1em;
  text-align: left;
  /* font-size: clamp(0.875rem, 2vw, 1rem); */
}

.testimonial-author {
  font-family: 'Superclarendon', Georgia, 'Times New Roman', Times, serif;
  color: #1478e7;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  position: relative;
}

.nav-button {
  background-color: transparent;
  border: 2px solid var(--fau-light-blue);
  color: var(--fau-light-blue);
  cursor: pointer;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.nav-button.prev {
  left: 1em;
}

.nav-button.next {
  right: 1em;
}

.nav-button:hover {
  transform: translateY(-50%) scale(1.1);
  color: var(--fau-light-blue);
  background-color: rgba(255, 255, 255, 0.5);
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #0e3b6e;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 0 10px;
  }

  .testimonial-slide {
    padding: 0 10px;
  }

  .testimonial-content {
    padding: 20px;
    min-height: 150px;
  }

  .testimonial-quote,
  .testimonial-quote-end {
    width: 60px;
    height: 53px;
  }

  .testimonial-quote svg,
  .testimonial-quote-end svg {
    width: 60px;
    height: 53px;
  }
  .testimonial-footer {
    padding: 2rem;
    font-size: 1rem;
  }

  .nav-button {
    /* width: 40px;
    height: 40px;
    font-size: 20px;
    top: auto;
    bottom: -50px; */
    display: none;
  }

  .nav-button.prev {
    left: 10px;
  }

  .nav-button.next {
    right: 10px;
  }
}
