/**
 * RTL-specific overrides — enqueued only when is_rtl() is true.
 *
 * Most of the theme is written with logical CSS properties (margin-inline,
 * inset-inline-start/end, etc.) so it already flips correctly for RTL.
 * This file only covers the handful of things logical properties can't
 * fix on their own: literal directional glyphs, and form fields that
 * should stay LTR regardless of page direction (phone numbers, emails,
 * dates, prices).
 */

/* Phone / email / date / price values read more naturally kept LTR even
   inside an RTL page. */
.mtbkh-field input[type="tel"],
.mtbkh-field input[type="number"],
.mtbkh-field input[type="email"],
.mtbkh-field input[type="date"],
.mtbkh-readonly-value {
	direction: ltr;
	text-align: end;
}

/* Breadcrumb / pagination arrows inside dashicons or inline SVGs that were
   authored pointing left by default. */
.mtbkh-pagination .page-numbers.prev,
.mtbkh-pagination .page-numbers.next {
	display: inline-flex;
}
