/* Rendre tout le texte à l&#039;intérieur de .hero-feature blanc avec un arrière-plan superposé sombre */ .hero-feature { position: relative; color: #ffffff !important; } .hero-feature *, .hero-feature h1, .hero-feature h2, .hero-feature h3, .hero-feature p, .hero-feature a, .hero-feature span { color: #ffffff !important; } /* Facultatif : ajouter un calque sombre semi-transparent pour plus de lisibilité */ .hero-feature::before { content: &#039;&#039;; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); /* ajuster l&#039;opacité ici */ z-index: 0; } .hero-feature * { position: relative; z-index: 1; }