/**
 * Fix for section title mobile display issues
 */
.qodef-section-title-holder .qodef-st-title {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    -ms-word-break: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
}

.qodef-section-title-holder .qodef-st-text {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    -ms-word-break: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
}

@media only screen and (max-width: 1024px) {
    .qodef-section-title-holder .qodef-st-title,
    .qodef-section-title-holder .qodef-st-text {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        -ms-word-break: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
}

@media only screen and (max-width: 767px) {
    .qodef-section-title-holder .qodef-st-title,
    .qodef-section-title-holder .qodef-st-text {
        width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        -ms-word-break: break-word !important;
        word-break: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
} 