

/*
 *  Si .description contiene un h4 con la clase .only_show_this_line_description,
 *  entonces ocultamos todos sus hijos directos que NO tengan esa clase.
 */
.journals .description:has(h4.only_show_this_line_description) > *:not(.only_show_this_line_description) {
    display: none !important;
}
