/* article.css – mise en page typographique académique */

article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Lora', serif;
  text-align: justify;
  line-height: 1.8;
  hyphens: auto;
}

/* Titres */
article h1, article h2, article h3, article h4 {
  font-family: 'Merriweather', serif;
  color: #1D8074;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

article h1 {
  font-size: 2rem;
  border-bottom: 2px solid #1D8074;
  padding-bottom: 0.3rem;
}

article h2 {
  font-size: 1.5rem;
  border-left: 3px solid #64D1D3;
  padding-left: 0.5rem;
}

article h3 {
  font-size: 1.25rem;
  font-style: italic;
  margin-left: 0.5rem;
}

/* Bloc auteurs */
.authors {
  text-align: center;
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

/* Résumé */
.abstract {
  background: #f1f8ff;
  border-left: 4px solid #1D8074;
  padding: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}

/* Citations */
blockquote {
  font-style: italic;
  color: #444;
  margin: 1.5rem 2rem;
  padding-left: 1rem;
  border-left: 3px solid #64D1D3;
  quotes: "«" "»" "‹" "›";
}
blockquote::before { content: open-quote; color: #1D8074; }
blockquote::after { content: close-quote; color: #1D8074; }

/* Figures et légendes */
figure {
  margin: 2rem auto;
  text-align: center;
}
figcaption {
  font-size: 0.9rem;
  font-variant: small-caps;
  color: #555;
  margin-top: 0.5rem;
}

/* Références */
.references {
  font-size: 0.9rem;
  margin-top: 2rem;
}
.references p {
  text-indent: -1.5em;
  margin-left: 1.5em;
}

/* Notes de bas de page */
.footnote {
  font-size: 0.85rem;
  color: #555;
}
