/* Police Poppins pour tout le site */
body,
.main-content,
.article-title,
nav.dropdown,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif !important;
}

/* Empêche toute image de déborder de l'écran, sans changer son comportement inline/block */
.item-page img {
  max-width: 100%;
  height: auto;
}

/* Corrections d'affichage mobile pour les tableaux */
@media (max-width: 768px) {
  .item-page table,
  .item-page tbody,
  .item-page tr,
  .item-page td {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .item-page td {
    box-sizing: border-box;
    overflow: hidden;
  }

  .item-page table {
    margin-bottom: 20px !important;
  }

  /* Ne cible QUE les images qui flottent (float:left dans le style inline) */
  .item-page img[style*="float"] {
    float: none !important;
    display: block !important;
    margin: 0 auto 15px auto !important;
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
  }
}