
.carousel-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 470px; /* Match this to your main card width */
  margin: 0 auto;
  min-height: 34px;
}

.carousel-item {
  display: none;
}
.carousel-item.active {
  display: flex;
}

.testimonial-glass-card {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255,255,255,0.10);
  border-radius: 0.8em;
  border: 1.1px solid rgba(255,255,255,0.11);
  box-shadow: 0 4px 13px 0 rgba(48,55,98,0.09);
  padding: 0.26em 0.7em;
  min-height: 27px;
  width: fit-content;
  margin: 0 auto;
  white-space: nowrap;
}

.testimonial-avatar {
  width: 23px;
  height: 23px;
  border-radius: 100%;
  border: 1px solid rgba(255,255,255,0.65);
  background: #f7f7fb;
  margin: 0 0.16em 0 0;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 7px rgba(40,40,60,0.10);
  white-space: nowrap;
}

.testimonial-quote {
  font-size: 1.04em;
  margin: 0 0.07em;
}

@media (max-width: 600px) {
  .carousel-inner { max-width: 99vw; }
  .testimonial-glass-card { font-size: 0.92rem; }
  .testimonial-avatar { width: 18px; height: 18px; }
}

.testimonial-carousel {
  margin-top: 1.4em;
}


/* --- Testimonial Carousel Refresh (2025‑06‑19) --- */
.carousel-inner{position:relative;}
.carousel-item{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .6s ease;
  display:flex;           /* keep flex layout inside glass card */
  justify-content:center; /* center the glass card */
}
.carousel-item.active{
  opacity:1;
  pointer-events:auto;
}
.testimonial-user{
  display:block;
  margin-top:0.15rem;
  font-size:0.85em;
  font-weight:500;
  opacity:0.8;
}

/* --- permanent cursor stability (2025‑06‑20) --- */
.hero            { cursor: default !important; }
.btn-primary     { cursor: pointer !important; }
.url-pill input  { cursor: text !important; }

/* disable pointer-events on decorative button overlay */
.btn-primary::before,
.btn-primary::after { pointer-events:none !important; }
