@media (max-width: 600px) {
  /* Largeur maximale pour le contenu des articles – étiré au max */
  .entry-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;  /* Pas de marges globales pour full-width */
    padding: 0 !important;
  }
  
  /* Justification pour paragraphes (phrases à largeur max) */
  .entry-content p,
  .entry-content .wp-block-paragraph {
    text-align: justify !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -ms-hyphens: auto !important;
    word-break: break-word !important;
    line-height: 1.7 !important;
    text-justify: inter-word !important;
    width: 100% !important;
    margin: 0 0 1em 0 !important;  /* Espacement en bas seulement pour séparer du texte suivant */
    padding: 0 !important;
  }
  
  /* Justification pour titres des articles (.entry-title) */
  .entry-title {
    text-align: justify !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -ms-hyphens: auto !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    text-justify: inter-word !important;
    width: 100% !important;
    margin: 1.5em 0 !important;  /* Espacement au-dessus et en-dessous pour aérer */
  }
  
  /* Justification pour H1 (titres principaux dans le contenu) */
  .entry-content h1 {
    text-align: justify !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -ms-hyphens: auto !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    text-justify: inter-word !important;
    width: 100% !important;
    margin: 1.5em 0 !important;  /* Espacement au-dessus et en-dessous */
  }
  
  /* Justification pour sous-titres (H2-H4) */
  .entry-content h2,
  .entry-content h3,
  .entry-content h4 {
    text-align: justify !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    -ms-hyphens: auto !important;
    word-break: break-word !important;
    line-height: 1.4 !important;
    text-justify: inter-word !important;
    width: 100% !important;
    margin: 1.5em 0 !important;  /* Espacement au-dessus et en-dessous */
  }
}