/*
 * RTL (Right-to-Left) language support
 *
 * Layout direction is handled entirely by Tailwind v4 logical utilities
 * (ms/me/ps/pe/start/end/text-start/text-end/border-s/border-e), which flip
 * automatically off the dir="rtl" attribute set on <html> for Arabic, Hebrew,
 * Urdu, Persian, Pashto, Sindhi, and Yiddish locales. No per-class override
 * sheet is needed.
 *
 * The single irreducible rule below mirrors directional inline-SVG icons
 * (the CTA arrow and back-chevron) that carry the .rtl-flip marker.
 * Non-directional icons are left untouched.
 */
[dir="rtl"] .rtl-flip { transform: scaleX(-1); }
