/**
* Custom additions to Bootstrap
*/

.text-justify {
    text-align: justify;
    hyphens: auto;
}

/* optional: justified only for md (≥768px) */
@media (min-width: 768px) {
    .text-md-justify {
        text-align: justify;
        hyphens: auto;
    }
}