/* VP Making-of — grille de vidéos YouTube (repeater widget) */

.vp-mo { display: block; }

/* Grille — 1 colonne mobile, 2 colonnes ≥768px */
.vp-mo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .vp-mo__grid { grid-template-columns: 1fr 1fr; }
}

.vp-mo__item { display: flex; flex-direction: column; gap: 12px; }

/* Cadre vidéo 16/9 responsive */
.vp-mo__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: #fdf6f3;
}
.vp-mo__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vp-mo__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
}

.vp-mo__empty {
  font-family: "Montserrat", sans-serif;
  color: #6b6b6b;
}
