.testimonial-silder {
  background: #000;
  color: #fff;
  position: relative;
  padding: 2rem 0 4rem 0;
  /* Flickity track wrapper */
  /* Each testimonial card */
  /* Selected card */
  /* Title */
  /* Quote text */
  /* Meta (name + position) */
  /* Navigation buttons */
  /* Responsive adjustments */
}
.testimonial-silder-inner {
  margin: 0 auto;
  padding: clamp(40px, 6vw, 96px) 20px clamp(64px, 8vw, 120px);
  position: relative;
}
.testimonial-silder-track {
  /* Flickity handles positioning */
}
.testimonial-silder-card {
  padding: clamp(12px, 1.5vw, 20px);
  margin: 0 15px;
  opacity: 0.3;
  filter: blur(3px);
  will-change: opacity, transform;
  transition: opacity 1s ease;
}
.testimonial-silder-card.is-active {
  opacity: 1;
  transform: scale(1.02);
}
.testimonial-silder .flickity-slider .testimonial-silder-card.is-selected {
  opacity: 1;
  filter: blur(0px);
}
.testimonial-silder .flickity-viewport {
  transition: 200ms ease all;
}
.testimonial-silder-title {
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 36px);
  margin: 0 0 0.6em;
}
.testimonial-silder-quote {
  line-height: 1.7;
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 68ch;
  margin: 0 auto;
  opacity: 0.9;
}
.testimonial-silder-meta {
  margin-top: 1.5em;
  text-align: right;
}
.testimonial-silder-name {
  display: block;
  font-weight: 700;
}
.testimonial-silder-position {
  display: block;
  font-style: italic;
  opacity: 0.8;
}
.testimonial-silder-nav {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vw, 28px);
  transform: translateX(-50%);
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.testimonial-silder-prev, .testimonial-silder-next {
  background: #fff;
  color: #000;
  border: 0;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.5s ease;
}
.testimonial-silder-prev {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
.testimonial-silder-next {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.testimonial-silder-prev:hover, .testimonial-silder-next:hover {
  background: var(--dark-red);
  color: white;
}
@media (max-width: 900px) {
  .testimonial-silder-card {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .testimonial-silder-card {
    width: 100%;
  }
  .testimonial-silder-meta {
    text-align: left;
  }
}
