/* Prevent long URLs and text from overflowing */
.pkp_structure_main,
.pkp_structure_main p,
.pkp_structure_main li,
.pkp_structure_main a {
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: normal;
}

/* Reduce single article title size on mobile only */
@media (max-width: 768px) {
    .obj_article_details .page_title {
        font-size: 20px;
        line-height: 1.25;
        text-align: left;
    }
}