/**
 * Scoped to the opted-in article body only.
 * Does not change html/body, header, nav, sidebar, comments, or other pages.
 */
.ltr-ac-body {
	direction: ltr !important;
	text-align: left;
	unicode-bidi: isolate;
}

.ltr-ac-body :where(
	p,
	h1, h2, h3, h4, h5, h6,
	li, td, th,
	figcaption,
	blockquote,
	pre, code,
	div, span,
	ul, ol
) {
	direction: inherit;
	text-align: left;
	unicode-bidi: isolate;
}

/* Keep explicit RTL islands inside the article (quotes, Persian asides). */
.ltr-ac-body [dir="rtl"],
.ltr-ac-body [dir="rtl"] :where(p, h1, h2, h3, h4, h5, h6, li, td, th, figcaption, blockquote) {
	direction: rtl;
	text-align: right;
}
