/* ============================================================
   EDOUARGOT — Correctif soulignement "À propos de nous"
   Cible exacte :
   body > footer > div.edo-footer-3col-inner
   > section.edo-footer-col.edo-footer-col-about > h2

   Principe :
   - on désactive le vieux ::after qui faisait un trait trop court ;
   - on utilise border-bottom sur le h2 lui-même ;
   - le trait suit exactement la largeur du texte.
   ============================================================ */

html body > footer > div.edo-footer-3col-inner > section.edo-footer-col.edo-footer-col-about > h2,
html body footer.site-footer .edo-footer-col-about > h2,
html body footer.edo-footer-3col .edo-footer-col-about > h2 {
  position: relative !important;
  display: inline-block !important;
  width: auto !important;
  max-width: max-content !important;

  padding-bottom: 11px !important;
  padding-right: 0.16em !important;
  margin-bottom: 16px !important;

  line-height: 1.15 !important;
  border-bottom: 3px solid #F5C063 !important;
  text-decoration: none !important;
  background-image: none !important;
}

/* On neutralise l'ancien trait court généré par ::after */
html body > footer > div.edo-footer-3col-inner > section.edo-footer-col.edo-footer-col-about > h2::after,
html body footer.site-footer .edo-footer-col-about > h2::after,
html body footer.edo-footer-3col .edo-footer-col-about > h2::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
