/**
 * Arabic (lang=ar) only: hide section “eyebrow” labels and teal brush-stroke
 * underlines (hero_border.png via ::before on headings / section titles).
 * Scoped with html[lang="ar"] (not dir alone).
 *
 * Hidden:
 * - First small title (h4) inside `.section_title` (theme eyebrow above h1/h2)
 * - Hero eyebrow (first h4 in `.hero_content`)
 * - `.hero_content h1::before` — underline under main hero title
 * - `.section_title.style_three::before` — underline under section titles (all alignments)
 * - `.section_title.style_four::before` — centered / alternate title underline variant
 *
 * Not hidden: h4 in marquee, service card categories, team cards, footer widgets
 *   (they are not direct children `.section_title > h4`).
 */

html[lang="ar"] .hero_content > h4:first-child,
html[lang="ar"] .section_title > h4:first-of-type {
  display: none !important;
}

html[lang="ar"] .hero_content h1::before {
  display: none !important;
}

html[lang="ar"] .section_title.style_three::before {
  display: none !important;
}

html[lang="ar"] .section_title.style_four::before {
  display: none !important;
}
