/* en-overrides.css — small patches so the shared site.css (authored RTL-first)
   reads correctly on English/LTR pages. Loaded AFTER style.css. */

body.en-site { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
body.en-site [lang="ar"] { font-family: 'Cairo', sans-serif; }

/* Mobile nav drawer: site.css anchors it to the physical right edge (correct for RTL).
   Flip it to the left edge for a more natural English mobile-menu feel. */
@media (max-width: 900px) {
    body.en-site .main-nav { right: auto !important; left: 0 !important; transform: translateX(-105%) !important; box-shadow: 18px 0 45px rgba(14,57,88,.13) !important; }
    body.en-site .main-nav.nav-open { transform: translateX(0) !important; }
}
