/* =====================================
   RTL Fix ONLY for WordPress Editor
   Urdu / Pashto + English mix
   ===================================== */

/* Gutenberg editor wrapper */
.editor-styles-wrapper,
.block-editor-writing-flow {
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right;
}

/* Paragraphs & headings inside editor */
.editor-styles-wrapper p,
.editor-styles-wrapper h1,
.editor-styles-wrapper h2,
.editor-styles-wrapper h3,
.editor-styles-wrapper h4,
.editor-styles-wrapper h5,
.editor-styles-wrapper h6 {
    direction: rtl;
    unicode-bidi: isolate;
    text-align: right;
}

/* English words, URLs, emails inside editor */
.editor-styles-wrapper a,
.editor-styles-wrapper code,
.editor-styles-wrapper pre {
    direction: ltr;
    unicode-bidi: isolate;
}

/* Prevent dot jumping issue */
.editor-styles-wrapper span,
.editor-styles-wrapper strong,
.editor-styles-wrapper em {
    unicode-bidi: isolate;
}

