/*
 Theme Name:   Divi Child
 Theme URI:    https://www.elegantthemes.com/gallery/divi/
 Description:  Divi Child Theme
 Author:       PERIMETRIK®
 Author URI:   https://perimetrik.de
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  divi-child
*/



/* Überschriften: sauberes und lesbares Umbrechen bei wenig Platz */
h1 {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
}

h2, h3, h4, h5, h6, body {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    text-wrap: pretty;
}



/* Theme Builder Content-Modul: Rows im eingebetteten Beitragsinhalt immer korrekt behandeln */
@media (min-width: 981px) {
    .et_pb_post_content .et_builder_inner_content .et_pb_row {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile/Tablet: links/rechts jeweils 5% */
@media (max-width: 980px) {
    .container, .et_pb_row:not(.et_pb_post_content .et_builder_inner_content .et_pb_row) {
        width: 90%;
    }
    .et_pb_row .et_pb_post_content .et_builder_inner_content .et_pb_row{
        width: 100%;
    }
}