.testimonial-carousel-module .testimonial-carousel-wrapper {
  position: relative;
}

.testimonial-carousel-module .testimonial-carousel-wrapper::before,
.testimonial-carousel-module .testimonial-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15px;
  z-index: 10;
  pointer-events: none;
}

.testimonial-carousel-module .testimonial-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-carousel-module .testimonial-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-carousel-module .testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: 200px;
}

.testimonial-carousel-module .testimonial-carousel::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991.98px) {
  .testimonial-carousel-module .testimonial-carousel {
    gap: 15px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-carousel-module .testimonial-carousel {
    gap: 10px;
  }
}

.testimonial-carousel-module .testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background-color: #F6F6F6;
  border-radius: 8px;
  padding: 30px 25px;
  display: block;
  opacity: 1;
  transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
  .testimonial-carousel-module .testimonial-card {
    padding: 25px 20px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-carousel-module .testimonial-card {
    padding: 20px 15px;
  }
}

.testimonial-carousel-module .testimonial-card .card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-carousel-module .testimonial-card .testimonial-quote {
  font-size: 16px;
  line-height: 1.1;
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
}

@media (max-width: 767.98px) {
  .testimonial-carousel-module .testimonial-card .testimonial-quote {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

.testimonial-carousel-module .testimonial-card .testimonial-name {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}

@media (max-width: 767.98px) {
  .testimonial-carousel-module .testimonial-card .testimonial-name {
    font-size: 16px;
  }
}

.testimonial-carousel-module .testimonial-card .testimonial-from {
  font-size: 14px;
  color: #333333;
}

@media (max-width: 767.98px) {
  .testimonial-carousel-module .testimonial-card .testimonial-from {
    font-size: 13px;
  }
}

.testimonial-carousel-module .testimonial-card .testimonial-from strong {
  color: #e1382d;
}

.testimonial-carousel-module .carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F6F6F6;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  color: #333333;
}

@media (max-width: 767.98px) {
  .testimonial-carousel-module .carousel-nav-btn {
    width: 35px;
    height: 35px;
  }
}

.testimonial-carousel-module .carousel-nav-btn:hover {
  background-color: #E0E0E0;
}

.testimonial-carousel-module .carousel-nav-btn:active {
  background-color: #D0D0D0;
}

.testimonial-carousel-module .carousel-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-carousel-module .carousel-nav-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767.98px) {
  .testimonial-carousel-module .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

.testimonial-carousel-module .carousel-prev {
  left: 0;
}

.testimonial-carousel-module .carousel-next {
  right: 0;
}

