


/* =========================================================
   ARTICLE – CONTENU TEXTE LONG
========================================================= */

.article {
  /* background: var(--bg-white, #fff);
  border-radius: var(--radius, 12px);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(0,0,0,0.06)); */
  padding: 2rem;
  line-height: 1.75;
  max-width: 90%;
  margin: 4vh auto;
}

@media (min-width: 769px) {
  section.article{
    margin-bottom: 20vh;
  }
}

/* Paragraphes */
.article p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-main, #222);
}

/* Titres */
.article h2 {
  margin: 2rem 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main, #222);
  position: relative;
}

/* Accent sous les titres */
.article h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 0.4rem;
  background: var(--color-wood, #d8cfc4);
  border-radius: 2px;
}
/* Accent sous les titres */
.article h1::after {
  content: "";
  display: block;
  width: 2em;
  height: 3px;
  margin-bottom: 0.4rem;
  background: var(--color-wood, #d8cfc4);
  border-radius: 2px;
}

/* Listes */
.article ul {
  margin: 1rem 0 1.6rem;
  padding-left: 1.2rem;
}

.article li {
  margin-bottom: 0.8rem;
  color: var(--text-muted, #666);
}

/* Mots clés */
.article strong {
  font-weight: 600;
  color: var(--text-main, #222);
}

/* Dernier paragraphe */
.article p:last-child {
  margin-bottom: 0;
}

/* --------------------- */
/* saut de ligne entre paragraphe pour evite les BR et le SEO */

.article p + p {
  margin-top: 0.3rem;
}
/* --------------------- */



/* Responsive */
@media (max-width: 768px) {
  .article {
    padding: 1.5rem;
  }

  .article h2 {
    font-size: 1rem;
  }
}


/* =========================================================
   ARTICLE 3 – ESPACEMENT SUPPLÉMENTAIRE
========================================================= */

/* Pour les paragraphes qui doivent respirer davantage */
.article .p-break {
    margin-bottom: 2.1rem; /* plus d'espace sous le paragraphe */
}

/* Pour les listes qui doivent respirer avant ou après un bloc */
.article .ul-break {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}


/* =========================================================
   ARTICLE 7 – LOGO SUPPLÉMENTAIRE
========================================================= */

.article h3 {
  position: relative;
  padding-left: 1.4em;
  text-decoration: underline;

  text-underline-offset: 6px; /* Ajuste l'écart vertical */
}

.article h3::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--color-wood, #777777);
  font-weight: bold;
}

