.testimonial-video-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem; /* spacing between items */
  margin: 2rem 0; /* spacing above/below the entire section */
}

.testimonial-video-item {
  flex: 0 1 240px; /* allow shrinking, max 240px */
  max-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.testimonial-video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
}