/**
 * Arabic/RTL layout overrides. Enqueued automatically when is_rtl() is
 * true; see functions.php.
 *
 * Everything else in the theme already uses logical CSS properties
 * (padding-inline, border-inline-start, inset-inline-start, etc.), so
 * layout, gutters, and card/grid alignment mirror correctly with zero
 * overrides here -- confirmed via a real dir="rtl" render across all
 * five pages (Phase F9). The one exception is the consultation
 * process-flow strip's connector arrow: it's a directional chevron
 * (points toward "next"), not purely decorative geometry, so simply
 * mirroring the flex row without also flipping the arrow leaves it
 * pointing backward (toward the previous, already-read step) instead
 * of forward.
 */
[dir="rtl"] .oasis-process-flow-arrow {
	transform: scaleX(-1);
}
