.ij-testimony-slider {
  width: 100%;
  color: #fff;
}

.ij-testimony-main {
  position: relative;
  width: 100%;
}

.ij-testimony-slide {
  display: none;
}

.ij-testimony-slide.is-active {
  display: block;
}

.ij-testimony-video-area {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 18px;
}

.ij-video-wrap,
.ij-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.ij-testimony-caption {
  padding: 18px 0 0;
}

.ij-testimony-title {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.1;
}

.ij-testimony-excerpt {
  opacity: 0.9;
}

.ij-testimony-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.ij-thumb-nav {
  border: 0;
  background: rgba(255,255,255,0.08);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
}

.ij-testimony-thumbs {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding-bottom: 6px;
}

.ij-testimony-thumb {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  min-width: 180px;
  max-width: 180px;
  text-align: left;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ij-testimony-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
}

.ij-testimony-thumb-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  margin-bottom: 8px;
}

.ij-testimony-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ij-testimony-thumb-title {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.ij-tvs-debug {
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .ij-testimony-title {
    font-size: 1.5rem;
  }

  .ij-testimony-thumb {
    min-width: 140px;
    max-width: 140px;
  }

  .ij-thumb-nav {
    display: none;
  }
}