/*
 * Multilingual Press.Zone - RTL Context Fixes
 *
 * In RTL languages, most layout should flow RTL, but code snippets must remain LTR
 * to avoid bidi reordering that makes code unreadable.
 */

html[dir="rtl"] pre,
html[dir="rtl"] pre code,
html[dir="rtl"] code,
html[dir="rtl"] kbd,
html[dir="rtl"] samp,
html[dir="rtl"] .wp-block-code,
html[dir="rtl"] .wp-block-preformatted {
    direction: ltr;
    text-align: left;
    unicode-bidi: plaintext;
}
