/*
 * Conditional BR — stylesheet
 *
 * .conditional-br is invisible on wide screens.
 * On screens <= 600 px it becomes a block element, forcing a line break
 * at exactly the point where [br] was placed in the content.
 */

/* Wide screens: render nothing, take up no space */
.conditional-br {
    display: none;
}

/* Narrow screens (mobile): act as a full-width block → line break */
@media (max-width: 600px) {
    .conditional-br {
        display: block;
        width: 100%;
        height: 0;
        overflow: hidden;
    }
}
