/* Testimonial Card */
.testimonial-card {
  background: rgba(20, 20, 20, 0.55); /* lighter than before */
  color: #ffffff;
  padding: 32px;
  max-width: 700px; max-width: 700px; /* or 750px depending on your design */
margin: 80px auto; /* center on the page */
  border-radius: 6px;
  margin: 80px 0 80px 80px;
  backdrop-filter: blur(4px);
}

/* Quote */
.testimonial-quote {
  font-family: 'Kristi', cursive;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Body */
.testimonial-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Name */
.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Session Type */
.testimonial-name span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    margin: 24px;
    max-width: 100%;
  }

  .testimonial-quote {
    font-size: 20px;
  }
}