/*
 * Fichier: custom.css
 * Description: Styles personnalisés pour le site ginbauteure.com.
 * Version: 1.0
 * Date: 2025-09-07
 * Auteur: Tom Vias
 */

/* Styles personnalisés */
.shadowed-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.justifie{
  text-align: justify;
  hyphens: auto;           /* césure auto (mieux en FR) */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: anywhere; /* évite les “rivières”/cassures moches */
}

.prose-justifie p{
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: anywhere;
}

.titre-centre {
  text-align: center;
}

/* Ajouter d'autres styles personnalisés ici */