/* ==========================================================================
   Video Testimonials Component
   ========================================================================== */
   /* Testimonial Card Styles */
/* Updated Testimonial Card Styles */
/* Testimonial Read More Button & Expanded Text Styles */
.testimonial .read-more-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--rounded);
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.testimonial .read-more-btn i {
  font-size: 0.8rem;
}

/* Expanded text styling */
.testimonial .read-more-text {
  display: none;
  padding-top: 1rem;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-200);
  margin-top: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .testimonial .read-more-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .testimonial .read-more-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.video-testimonials {
    padding: 5rem 0;
    background-color: var(--gray-50, #f3f4f6);
}

.video-testimonials .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.video-testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-testimonials .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900, #111827);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.video-testimonials .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary, #f472b6) 0%, var(--secondary-dark, #db2777) 100%);
    border-radius: 9999px;
}

.video-testimonials .section-header .lead {
    font-size: 1.25rem;
    color: var(--gray-600, #4b5563);
    max-width: 700px;
    margin: 0 auto;
}

.video-testimonials .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-testimonials .video-card {
    background-color: var(--accent, #ffffff);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
}

.video-testimonials .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-testimonials .video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-testimonials .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-testimonials .video-caption {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--accent, #ffffff);
}

.video-testimonials .video-caption p {
    font-weight: 600;
    color: var(--gray-700, #374151);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-testimonials {
        padding: 3rem 0;
    }
    
    .video-testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .video-testimonials .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-testimonials .video-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .video-testimonials .section-header h2 {
        font-size: 1.75rem;
    }
    
    .video-testimonials .section-header .lead {
        font-size: 1.1rem;
    }
    
    .video-testimonials .container {
        padding: 0 1rem;
    }
}