/* WP Text Justify - frontend styles */
.wp-text-justify {
    text-align: justify;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    text-justify: inter-word;
    /* Optional: improve justification on WebKit */
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
}

/* Ensure paragraphs inside the wrapper keep spacing */
.wp-text-justify p {
    margin: 0 0 1em;
}
