/*
 * LTR overrides for page-sections.php. Most of these sections are already
 * direction-agnostic (centered text, symmetric grids, flex-start/flex-end
 * icon alternation that's writing-mode relative for free) — the one thing
 * that needs correcting is text_image's "image_position" choice. The admin
 * picks a literal "ימין"/"שמאל" (right/left), meaning the image should end up
 * on that PHYSICAL side regardless of page direction. In RTL, the default DOM
 * order (image first) already puts it on the right, and .psec-image-left adds
 * row-reverse to flip it left. In LTR the natural first-child side is the
 * opposite (left), so the row-reverse assignment needs to be inverted here.
 */

html[dir="ltr"] .psec-text-image .psec-container {
  flex-direction: row-reverse; }
html[dir="ltr"] .psec-text-image.psec-image-left .psec-container {
  flex-direction: row; }
