/* Für H1-Elemente mit deutscher Silbentrennung */ h1 { /* Silbentrennung aktivieren */ hyphens: auto !important; -webkit-hyphens: auto !important; -moz-hyphens: auto !important; /* Verhindert willkürliche Wortunterbrechungen ohne Bindestrich */ word-break: normal !important; overflow-wrap: break-word !important; /* Hilft bei der korrekten Trennung */ text-align: left !important; max-width: 100%; } /* Optional: Auch für andere Überschriften */ h2, h3, h4, h5, h6 { hyphens: auto !important; -webkit-hyphens: auto !important; -moz-hyphens: auto !important; word-break: normal !important; overflow-wrap: break-word !important; } html, body { lang: de; }