/* ── Widget VP Article — En-tête (fil d'Ariane + badge catégorie + date) ── */

.vp-art-head { width: 100%; max-width: 720px; margin: 0 auto 4px; }

/* Colonne de lecture maquette = 720px (en-tête + corps Gutenberg centrés) */
body.single-post .elementor-element.elementor-widget-theme-post-content {
  max-width: 720px !important; margin-left: auto !important; margin-right: auto !important;
}

/* Fil d'Ariane */
.vp-art-bc {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
  font-family: "Montserrat", sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; line-height: 1;
}
.vp-art-bc a { color: var(--surface-dark, #4b4b4b); text-decoration: none; transition: color .2s; white-space: nowrap; }
.vp-art-bc a:hover { color: var(--foreground, #000); }
.vp-art-bc__sep { color: var(--surface-dark, #4b4b4b); opacity: .4; }
.vp-art-bc__cur {
  color: var(--foreground, #000); max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Badge catégorie + date */
.vp-art-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.vp-art-cat {
  background: var(--primary, #f1b8a0); color: #fff;
  font-family: "Montserrat", sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; line-height: 1;
  padding: 6px 14px; border-radius: 100px;
}
.vp-art-date {
  font-family: "Montserrat", sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--surface-dark, #4b4b4b); opacity: .6;
}

/* Titre de l'article (rendu ici, retiré du corps Gutenberg pour cohérence police/taille) */
.vp-art-title {
  font-family: "Playfair Display", serif; font-weight: 400;
  font-size: clamp(26px, 4vw, 52px); line-height: 1.1;
  color: var(--foreground, #000); margin: 0;
}

/* Image de couverture (sous le titre) — ratio 16:9 arrondi */
.vp-art-cover {
  width: 100%; aspect-ratio: 16 / 9; margin-top: 40px;
  border-radius: 16px; overflow: hidden;
}
.vp-art-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ── Corps de l'article (Gutenberg) — typographie maquette ── */
/* Emojis : Montserrat n'a pas de glyphes emoji → fallback couleur par OS pour qu'ils s'affichent */
body.single-post .elementor-widget-theme-post-content,
body.single-post .elementor-widget-theme-post-content p:not(blockquote p),
body.single-post .elementor-widget-theme-post-content li {
  font-family: "Montserrat", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
}
/* Exclut les paragraphes de citation (stylés via theme.json core/quote) */
body.single-post .elementor-widget-theme-post-content p:not(blockquote p) {
  font-size: 16px; line-height: 1.75; color: var(--surface-dark, #4b4b4b); margin: 0 0 20px;
}
body.single-post .elementor-widget-theme-post-content h2 {
  font-family: "Playfair Display", serif; font-weight: 400;
  font-size: clamp(22px, 2.5vw, 30px); line-height: 1.2; color: var(--foreground, #000);
  margin: 48px 0 16px;
}
body.single-post .elementor-widget-theme-post-content h3 {
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--primary, #f1b8a0);
  line-height: 1.4; margin: 36px 0 12px;
}
body.single-post .elementor-widget-theme-post-content h4 {
  font-family: "Playfair Display", serif; font-weight: 400;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.3; color: var(--foreground, #000);
  margin: 32px 0 12px;
}
/* Images du corps — arrondi léger, comme la galerie maquette */
body.single-post .elementor-widget-theme-post-content figure.wp-block-image img,
body.single-post .elementor-widget-theme-post-content figure.wp-block-image { border-radius: 12px; }
/* Premier bloc du corps : pas de marge haute (la couverture est juste au-dessus) */
body.single-post .elementor-widget-theme-post-content > :first-child,
body.single-post .elementor-widget-theme-post-content > .elementor-widget-container > :first-child { margin-top: 0; }
