/*
 * OSD Horizon — RTL exceptions only (Design Doc §9).
 *
 * The main stylesheet is authored RTL-first using CSS logical properties
 * (margin-inline-*, inset-inline-*, text-align:start), so the layout already
 * mirrors correctly. This file holds the few cases logical properties can't
 * express. Loaded only when is_rtl().
 *
 * Do NOT mirror: logos, the brand emblem, photos, phone numbers, video controls.
 */

/* Latin fragments embedded in RTL text (phone, emails, codes) stay LTR. */
[dir="ltr"],
.un-code,
.bottom-bar span:last-child {
	direction: ltr;
	unicode-bidi: embed;
}

/* Numerals use Latin digits everywhere (Design Doc §3). */
.stat b,
.meta {
	font-feature-settings: "tnum";
}
