.video-gallery__heading {
  margin: 0 auto 50px;
	max-width: 767px;
	text-align: center;
}    

/* --- Grid layout --- */
    .video-gallery__grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 30px;
    }
    @media (max-width: 1024px) {
      .video-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .video-gallery__grid { grid-template-columns: 1fr; }
    }

    /* --- Responsive embed --- */
    .embed {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;            /* modern responsive ratio */
      background: #000;                 /* optional nice placeholder */
      overflow: hidden;
      border-radius: 12px;              /* optional */
    }
    @supports not (aspect-ratio: 1) {
      /* fallback for very old browsers */
      .embed { height: 0; padding-bottom: 56.25%; }
    }

    .embed__inner,
    .embed__inner > iframe,
    .embed__inner > embed,
    .embed__inner > object {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }