#testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

#testimonial p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 0;
}

#testimonial-slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;

  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.testimonial-image {
  display: none;
  width: 95%;
  height: auto;
  border-radius: 16px;
  border: 2px solid var(--text-beige);
  transition: opacity 0.5s ease;
}

.testimonial-image.active {
  display: block;
}

.testimonial-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
  padding: 0 40px;
  color: var(--header-beige);
}

.testimonial-controls button:hover {
  color: var(--text-beige);
}

#swipe-hint {
  display: none;
}

#swipe-hint img {
  height: 24px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  #testimonial-slider {
    
    gap: 12px;
  }

  .testimonial-controls button {
    display: none;
  }

  #swipe-hint {
    display: block;
  }
}

@media (min-width: 768px) {
  #testimonial-slider {
    flex-direction: column-reverse;
  }
}

@media (min-width: 1024px) {
  #testimonial-slider {
    max-width: 600px;
  }

  #testimonial p {
    font-size: 21px;
    line-height: 32px;
    max-width: 800px;
  }
}
