/* =========================================================
   Article SEO — style discret, lisible, non dominant
   ========================================================= */

.article-seo {
  font-size: 0.875rem; /* ≈14px */
  line-height: 1.6;
  color: #6b7280; /* texte doux, bon contraste */
  font-weight: 400;
}

/* Espacements harmonisés */
.article-seo p,
.article-seo ul,
.article-seo ol,
.article-seo blockquote,
.article-seo figure {
  margin: 0.75rem 0;
}

/* Titres très sobres */
.article-seo h2,
.article-seo h3,
.article-seo h4,
.article-seo h5,
.article-seo h6 {
  color: #333;
  line-height: 1.4;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

/* Tailles réduites */
.article-seo h2 { font-size: 1rem; }   /* ~16px */
.article-seo h3 { font-size: 0.9375rem; }
.article-seo h4,
.article-seo h5,
.article-seo h6 { font-size: 0.875rem; }

/* Texte fort : allégé visuellement */
.article-seo strong {
  font-weight: 600; /* moins épais */
  color: #333;      /* proche du texte, pas flashy */
}

/* Liens : lisibles mais neutres */
.article-seo a {
  color: var(--mif-blue, #4096ee);
  text-decoration: none;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.article-seo a:hover {
  color: var(--mif-blue-dark, #1e40af);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Listes */
.article-seo ul,
.article-seo ol { padding-left: 1.2rem; }
.article-seo li { margin: 0.3rem 0; }
.article-seo ul { list-style: disc; }
.article-seo ol { list-style: decimal; }

/* Images : sobres et non invasives */
.article-seo img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 0.75rem 0;
}

/* Citations */
.article-seo blockquote {
  border-left: 3px solid #ddd;
  padding-left: 0.75rem;
  color: #444;
  font-style: italic;
  background: #fafafa;
}

/* Séparateur */
.article-seo hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 1rem 0;
}

/* Petits écrans : rien de plus grand */
@media (max-width: 640px) {
  .article-seo { font-size: 0.75rem; }
  .article-seo h2 { font-size: 0.85rem; }   /* ~16px */
  .article-seo h3 { font-size: 0.8rem; }
  .article-seo h4,
  .article-seo h5,
  .article-seo h6 { font-size: 0.75rem; }
}
