/* =====================================================================
   Sabio United — LTR overrides (loaded only for the English locale).
   The base design system already uses CSS logical properties
   (inset-inline, text-align:start, padding-inline …) so it flips
   automatically under dir="ltr". This file only mirrors the few
   DIRECTIONAL arrow icons that must point the opposite way in LTR.
   ===================================================================== */

/* Directional arrows that only ever hold a chevron/arrow → mirror them */
[dir="ltr"] .breadcrumb svg,
[dir="ltr"] .hero-arrow svg,
[dir="ltr"] .cat-link svg,
[dir="ltr"] .p-more svg,
[dir="ltr"] .dir-flip {
    transform: scaleX(-1);
}

/* Keep the flip while animating the hover nudge (forward = right in LTR) */
[dir="ltr"] .cat-card:hover .cat-link svg {
    transform: scaleX(-1) translateX(-6px);
}

/* Latin copy reads slightly tighter than Arabic */
[dir="ltr"] body { line-height: 1.7; }
[dir="ltr"] .footer-activities { letter-spacing: .4px; }
