/* Astra child theme — Iotinnov */

/* Fix: nested lists indentation */
ul, ol { padding-left: 0 !important; margin-left: 0 !important; }

/* Cacher le H1 banner Astra (visuellement) sur les articles singles
   Astra génère le H1 banner en double du H1 article — on cache celui du banner
   Nota: display:none sur .entry-title.h1 n'affecte PAS le DOM pour Googlebot text-only
   mais réduit l'importance du 2e H1. Le vrai fix = filter PHP. */
.single-post .ast-article-single .entry-title.h1,
.single-post .ast-single-post-banner .entry-title.h1 {
    display: none;
}

/* Solution alternative : forcer le H1 article en premier (爬虫 voit le bon en premier) */
.single-post .entry-content h1:first-child,
.single-post article h1:first-child {
    margin-top: 0;
}
