/* VP Making-of — grilles de vidéos YouTube par catégorie (CPT mo_video) */

.vp-mo { display: block; }

.vp-mo__section { margin-bottom: 64px; }
.vp-mo__section:last-child { margin-bottom: 0; }

/* Titre de catégorie — Playfair (sans soulignement, fidèle à la maquette) */
.vp-mo__cat-title {
  margin: 0 0 32px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: #000;
}

/* 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__meta {
  margin: 0 0 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f1b8a0;
}
.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;
}
