/* Prevent hyphenation in all headings */
h1, h2, h3, h4, h5, h6 {
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal;
}

/* Keep specific overflow handling for very long words to prevent layout issues */
@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        /* On smaller screens, allow word breaks if absolutely necessary to prevent overflow */
        overflow-wrap: break-word;
        word-wrap: break-word;
        /* But still no hyphenation */
        hyphens: none;
        -webkit-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
    }
}
