
.testimonial-carousel {
    overflow: hidden;
    position: relative;
  }
  
  .testimonial-track {
    display: flex;
    transition: opacity 0.3s ease;
  }
  
  .testimonial-card {
    flex-shrink: 0;
    width: 280px;
    min-height: 280px; /* Increased height */
    transition: all 0.3s ease;
    background-color: #F5F2ED;
    border-radius: 1rem; /* 2xl rounded corners */
    margin: 0 10px; /* gap between cards */
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-card.dimmed {
    opacity: 0.5;
    filter: blur(1px);
    transform: scale(0.95);
    background-color: #F5F2ED;
  }
  
  .testimonial-card.focused {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: #F5F2ED;
  }
  
  .quote-mark {
    font-size: 6rem;
    line-height: 1;
    height: 60px;
    padding-top: 20px;
    display: flex;
    font-family:Arial, Helvetica, sans-serif;
    align-items: center;
    color: #f97316;
  }
  
  .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }