/* ══════════════════════════════════════════════
   VibrationVitale — Page article individuel
   Astra Child
══════════════════════════════════════════════ */

/* ── NEUTRALISER LE LAYOUT ASTRA ── */
body.single-vv_article .site-content,
body.single-vv_article .content-area,
body.single-vv_article #primary,
body.single-vv_article .ast-container,
body.single-vv_article .entry-content,
body.single-vv_article #content {
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  width: 100% !important;
}
body.single-vv_article .entry-header,
body.single-vv_article .entry-footer,
body.single-vv_article .post-navigation,
body.single-vv_article .ast-article-post > *:not(.vva-wrap) {
  display: none !important;
}
body.single-vv_article .vva-wrap {
  width: 100%;
}

:root {
  --or: #B8965A;
  --or-pale: #F9F3E8;
  --or-deep: #8B6A32;
  --profond: #2C1F2E;
  --gris: #4A3F4A;
  --gris-doux: #7A7070;
  --gris-pale: #F5F3F0;
  --creme: #FBF7F2;
  --blanc: #FFFFFF;
  --border: rgba(184,150,90,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--gris);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── HERO ── */
.vva-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--profond);
  overflow: hidden;
}

.vva-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.vva-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,31,46,.3) 0%,
    rgba(44,31,46,.75) 60%,
    rgba(44,31,46,.92) 100%
  );
}

.vva-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  padding: 3rem 8vw 3.5rem;
}

/* BREADCRUMB */
.vva-breadcrumb {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.vva-breadcrumb a:hover { color: var(--or); }
.vva-sep { color: var(--or); opacity: .5; }

/* TAG */
.vva-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--or);
  background: rgba(184,150,90,.15);
  padding: .25rem .7rem;
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 2px;
}

/* TITRE */
.vva-titre {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--blanc);
  margin-bottom: 1.2rem;
}

/* META */
.vva-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.vva-dot { color: var(--or); opacity: .6; }

/* ── CONTENU ── */
.vva-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 8vw 3rem;
}

.vva-content {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--gris);
}

/* Titres dans le contenu */
.vva-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  letter-spacing: .04em;
  color: var(--profond);
  margin: 2.5rem 0 1rem;
  line-height: 1.05;
}
.vva-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: .04em;
  color: var(--or-deep);
  margin: 2rem 0 .8rem;
  line-height: 1.1;
}

/* Paragraphes */
.vva-content p {
  margin-bottom: 1.1rem;
  font-size: .97rem;
}
.vva-content p:last-child { margin-bottom: 0; }

/* Gras */
.vva-content strong {
  color: var(--profond);
  font-weight: 500;
}

/* Italique */
.vva-content em {
  color: var(--gris-doux);
  font-style: italic;
}

/* Liens */
.vva-content a {
  color: var(--or);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.vva-content a:hover { color: var(--or-deep); }

/* Listes */
.vva-content ul,
.vva-content ol {
  margin: 1rem 0 1.2rem 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.vva-content ul li,
.vva-content ol li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .95rem;
  line-height: 1.75;
}
.vva-content ul li::before {
  content: '✦';
  color: var(--or);
  font-size: .55rem;
  flex-shrink: 0;
  margin-top: .45rem;
}
.vva-content ol {
  counter-reset: vv-ol;
}
.vva-content ol li::before {
  counter-increment: vv-ol;
  content: counter(vv-ol);
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  color: var(--or);
  flex-shrink: 0;
  width: 22px;
  text-align: center;
  margin-top: .1rem;
}

/* Séparateur hr */
.vva-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* Citation */
.vva-content blockquote {
  border-left: 3px solid var(--or);
  padding: 1.2rem 1.6rem;
  background: var(--or-pale);
  margin: 1.8rem 0;
  border-radius: 0 4px 4px 0;
}
.vva-content blockquote p {
  font-style: italic;
  color: var(--gris);
  margin: 0;
}

/* Note bas de page (italique + petite taille) */
.vva-content p:last-child em {
  font-size: .82rem;
  color: var(--gris-doux);
  display: block;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  margin-top: 2rem;
  font-style: italic;
}

/* ── BOUTON RETOUR ── */
.vva-retour {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.vva-btn-retour {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gris-doux);
  transition: color .2s;
}
.vva-btn-retour:hover { color: var(--or); }

/* ── CTA BANDE ── */
.vva-cta {
  background: var(--or);
  padding: 3.5rem 8vw;
  text-align: center;
  margin-top: 1rem;
}
.vva-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.vva-cta-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.vva-cta-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,.5);
}
.vva-cta-titre {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: .04em;
  color: var(--blanc);
  margin-bottom: .8rem;
  line-height: 1.05;
}
.vva-cta-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.vva-cta-btns {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vva-btn-or {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blanc);
  color: var(--profond);
  padding: .85rem 2.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
}
.vva-btn-or:hover { background: var(--profond); color: var(--blanc); }

.vva-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--blanc);
  padding: .85rem 2.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 2px;
  transition: all .25s;
}
.vva-btn-outline:hover { background: var(--profond); border-color: var(--profond); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .vva-hero { min-height: 320px; }
  .vva-hero-inner { padding: 2.5rem 6vw; }
  .vva-content-wrap { padding: 2.5rem 6vw 2rem; }
  .vva-cta { padding: 2.5rem 6vw; }
  .vva-cta-btns { flex-direction: column; align-items: center; }
}
