/**
 * Baseline RTL support for /ar/ and /he/.
 *
 * <html dir="rtl"> already flips native text alignment and the visual order
 * of flex/grid layouts for free (direction is an inherited CSS property the
 * browser derives from the dir attribute), which covers most of the site's
 * layout automatically. This file only needs to correct the handful of
 * places the source CSS hardcodes a physical left/right value instead of a
 * logical one. Directional icon mirroring (chevrons/arrows that indicate
 * reading direction) is a follow-up visual QA pass, not covered here yet.
 */

[dir="rtl"] .ks-utility__links a[href^="tel:"] span {
	direction: ltr;
}
