Testimonial Slider Styles .kw-testimonial-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .kw-testimonial-slider-wrapper {
    overflow: visible;
  }
}

.kw-testimonial-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 66px;
  flex-wrap: wrap;
  gap: 1rem;
}

.kw-testimonial-slider-title {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.kw-testimonial-slider-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
}

.kw-slider-prev,
.kw-slider-next {
  background: transparent;
  border: 1px solid #353433;
  border-radius: 8px;
  width: 72px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #353433;
  padding: 0;
}
.kw-slider-prev img,
.kw-slider-next img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.kw-slider-prev:hover,
.kw-slider-next:hover,
.kw-slider-prev:focus,
.kw-slider-next:focus {
  background-color: rgba(238, 187, 246, 0.2196078431);
  border-color: #353433;
}
.kw-slider-prev:hover img,
.kw-slider-next:hover img,
.kw-slider-prev:focus img,
.kw-slider-next:focus img {
  /* filter: brightness(0) invert(1); */
}

.kw-slider-prev:disabled,
.kw-slider-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.kw-slider-prev svg,
.kw-slider-next svg {
  width: 20px;
  height: 20px;
}

.kw-testimonial-slider {
  position: relative;
  overflow: hidden;
}

/* Swiper will handle slide display, but ensure slides are visible */
.kw-testimonial-slider .swiper-slide {
  height: auto;
}

/* Desktop: 60% slide width with partial prev/next visible (above 1024px) */

.kw-testimonial-item {
  background: #fbf3e9;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 24px;
}
.testimonial-left-block {
  width: 40%;
}
.testimonial-right-block {
  width: 60%;
}
.kw-testimonial-content {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #353433;
}

.kw-testimonial-author {
  display: flex;
  justify-content: start;
}

.kw-testimonial-author-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}

.kw-testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s ease;
}
.kw-testimonial-author-image:hover img {
  transform: scale(1.08);
}

.kw-testimonial-author-info {
  text-align: left;
}

.kw-testimonial-author-name {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #353433;
  margin-top: 40px;
}

.kw-testimonial-author-position {
  font-size: 0.9rem;
  color: #666;
}
.kw-testimonial-slider-mobile-navigation {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .kw-testimonial-slider-header {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 32px;
  }

  .kw-testimonial-item {
    flex-direction: column;
  }

  .testimonial-left-block {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .testimonial-right-block {
    width: 100%;
  }
  .kw-testimonial-author-name {
    margin-top: 20px;
    margin-bottom: 36px;
  }

  .kw-testimonial-slider-navigation {
    width: 100%;
    justify-content: flex-start;
  }
  .kw-slider-prev,
  .kw-slider-next {
    width: 58px;
    height: 44px;
  }
  .kw-slider-prev img,
  .kw-slider-next img {
    width: 20px;
    height: 20px;
  }

  .kw-testimonial-item {
    padding: 1.5rem;
  }

  .kw-testimonial-content {
    font-size: 1rem;
  }
}
