/* ============================================
   RTL — Minimal overrides for Arabic & Hebrew
   dir="rtl" on <html> handles character rendering order.
   Only font swap and structural bullet fix are needed.
   ============================================ */

/* ---- Typography ---- */
[dir="rtl"] body {
  font-family: 'Cairo', 'Heebo', 'Inter', -apple-system, sans-serif;
}

/* ---- Study abroad bullet fix ---- */
/* Prevents bullet markers from overlapping list text */
[dir="rtl"] .country-benefits li {
  padding-right: 20px;
  padding-left: 0;
}
[dir="rtl"] .country-benefits li::before {
  right: 0;
  left: auto;
}
