/* ---------------------------------------------------------------
 * m84 — RTL-specific polish
 * Loaded only when is_rtl() is true.
 * Logical properties handle most of it; this file fixes the edges.
 * ------------------------------------------------------------- */

/* Mirror arrow-in-button text so "←" reads as "back" in RTL */
.wp-block-button .wp-block-button__link {
	unicode-bidi: plaintext;
}

/* Blockquote bar lives on the right side in Hebrew (logical handles this,
   but be explicit for older browsers) */
.wp-block-post-content blockquote {
	text-align: start;
}

/* Varela Round / Assistant render best with slight letter-spacing tweak in RTL */
h1, h2, h3, h4 {
	letter-spacing: -0.01em;
}

/* Fix Hebrew quotation marks — make sure they don't get auto-flipped */
.wp-block-post-content blockquote::before {
	content: none;
}

/* Tags & post-meta — keep separators readable in RTL */
.m84-post-meta {
	gap: 1rem;
}
