/* --- FIX CSS: applique même si style.css a un souci --- */

/* H1 SEO caché partout (robuste) */
#site-title.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:0 !important;
  overflow:hidden !important;
  white-space:nowrap !important;
  clip:rect(0,0,1px,0) !important;   /* anciens navigateurs */
  clip-path:inset(50%) !important;    /* navigateurs modernes */
  border:0 !important;
  line-height:1 !important;
  font-size:1px !important;
}

/* Garde-fou mobile, au cas où un style le ré-afficherait */
@media (max-width:640px){
  #site-title{ display:none !important; }
}

/* Titres de section (barre orange centrée) */
.section-title-wrapper { text-align:center; }
.section-title{
  display:inline-block;
  background:#fb911f;
  color:#fff;
  padding:12px 20px;
  margin:40px auto 20px;
  border-radius:6px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:clamp(1.2rem,3vw,2rem);
}

