/* Font Weight Adjustments - Make p and span not bold, h elements bold */

/* Make all paragraphs not bold */
p {
    font-weight: normal !important;
}

/* Make all span elements not bold */
span {
    font-weight: normal !important;
}

/* Make all headings bold */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold !important;
}

/* RTL specific adjustments */
body.rtl p {
    font-weight: normal !important;
}

body.rtl span {
    font-weight: normal !important;
}

body.rtl h1,
body.rtl h2,
body.rtl h3,
body.rtl h4,
body.rtl h5,
body.rtl h6 {
    font-weight: bold !important;
}