/* Video testimonials — cropped reel frames (no profile header / footer chrome) */

.testimonial-videos-section {
  background: #fafafa;
  border-bottom: 1px solid #ececec;
}

.testimonial-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 768px) {
  .testimonial-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Crop wrapper: hides IG embed header, footer, and side letterboxing */
.reel-embed-crop {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  max-height: min(62vh, 520px);
  overflow: hidden;
  overscroll-behavior: none;
  border-radius: 16px;
  background: #0a0a0a;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  touch-action: pan-y;
}

.reel-embed-crop iframe {
  position: absolute;
  border: 0;
  overflow: hidden;
  pointer-events: auto;
  /* Oversize + offset to crop chrome inside cross-origin iframe */
  width: 148%;
  height: calc(100% + 168px);
  left: 50%;
  top: -76px;
  transform: translateX(-50%);
  max-width: none;
}

@media (min-width: 768px) {
  .reel-embed-crop iframe {
    width: 158%;
    top: -80px;
  }
}
