/**
 * RTL Stylesheet — loaded automatically by WordPress when is_rtl()
 *
 * This file flips LTR styles for proper RTL display.
 * Most styles in our main.css are already RTL-first, so overrides are minimal.
 */

/* RTL-specific adjustments */
body {
    direction: rtl;
    unicode-bidi: embed;
}

/* Flip floats */
.pull-left { float: right !important; }
.pull-right { float: left !important; }

/* Adjust text alignment utilities in RTL context */
.text-left { text-align: right; }
.text-right { text-align: left; }
