/*
 * Joomla 4 compatibility for markup that changed from Joomla 3.
 * Only rules for elements whose tag/class Joomla 4 renders differently; the look is copied from
 * the existing J3 rules so the result stays pixel-identical.
 */

/* Article title: J3 rendered <div class="page-header"><h2>, J4 renders <h1>.
   Mirrors `.page-header > h2` from template.css + custom.css and `.page-header h2` from bootstrap_rtl.css. */
.item-page .page-header > h1 {
    font-family: Open Sans Hebrew;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
    display: block;
    margin: 0 !important;
    padding: 0;
    background-color: #e9ebee;
    text-align: center;
}
