/* Testimonials Carousel Component */

/* Section spacing from the original */
.testimonials-section {
    padding: 90px 0;
  }
  
  .carousel-wrapper {
    overflow: hidden;
    position: relative;
  }
  
  .testimonials-carousel {
    display: flex;
    gap: 24px;
    overflow-x: scroll;
    scroll-behavior: auto;
    width: 100%;
    padding-bottom: 10px;
  }
  
  .testimonials-carousel::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-card {
    min-width: 360px;
    max-width: 360px;
    background: #111216;
    border-radius: 18px;
    padding: 24px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    min-height: 205px;
  }
  
  .testimonial-card:hover {
    transform: translateY(-4px);
    background: #18191f;
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .testimonial-photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.25s ease;
  }
  
  .testimonial-card:hover .testimonial-photo {
    transform: scale(1.09);
  }
  
  .testimonial-owner-link {
    text-decoration: none;
  }
  
  .testimonial-owner {
    color: #d6d6d6;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
  }

  .testimonial-owner .owner-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
  }

  .testimonial-owner .owner-title {
    font-size: 1.1rem;
    font-weight: lighter;
    color: #d6d6d6;
  }
  
  .testimonial-card:hover .testimonial-owner {
    border-color: #fff;
  }
  
  .testimonial-quote {
    color: #fff;
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  
  .testimonial-text {
    color: #bbbbbb;
    line-height: 1.55;
  }  