/* styles/testimonials.css */

.testimonial-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 16px;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  margin-top: 0;
  margin-bottom: 5px;
  color: #a58ad6; /* soft purple */
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.6;
}

.testimonial-title {
  margin-top: 0;
  margin-bottom: 10px;
  color: white;
  font-size: 22px;
  font-weight: 600;
}

.testimonial-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.testimonial-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.testimonial-divider {
  border-top: 1px solid #444;
  margin-top: 10px;
  margin-bottom: 0;
}
