/*
Nabd — right-to-left overrides.

The theme is authored with CSS logical properties (margin-inline, inset-inline,
border-inline), so most of the layout mirrors on its own. This file only fixes
the handful of places where a physical value, a transform, or a glyph direction
has to flip.

Loaded automatically by WordPress for RTL locales (Arabic, Hebrew, Persian,
Urdu…) through wp_style_add_data( 'nabd-style', 'rtl', 'replace' ).
*/

/* Numbers, URLs and code stay left-to-right inside RTL copy. */
[dir="rtl"] .nb-composer input[type="url"],
[dir="rtl"] .nb-lb-pct,
[dir="rtl"] .nb-composer-count,
[dir="rtl"] code,
[dir="rtl"] pre,
[dir="rtl"] .wp-block-code{direction:ltr;text-align:right}

[dir="rtl"] pre,
[dir="rtl"] .wp-block-code{text-align:left}

/* Arabic ascenders need a touch more line height to stay legible. */
[dir="rtl"] body{line-height:1.75}
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3,[dir="rtl"] h4{letter-spacing:0;line-height:1.4}
[dir="rtl"] .nb-post-title{line-height:1.5}

/* Chevrons and the back arrow point the other way. */
[dir="rtl"] .nb-single-back > a svg,
[dir="rtl"] .nb-lb-prev svg,
[dir="rtl"] .nb-lb-next svg{transform:scaleX(-1)}

/* Floats in post content. */
[dir="rtl"] .nb-single-content .alignleft{float:right;margin:0 0 20px 20px}
[dir="rtl"] .nb-single-content .alignright{float:left;margin:0 20px 20px 0}

/* The quote bar sits on the reading edge. */
[dir="rtl"] .nb-single-content blockquote,
[dir="rtl"] .wp-block-quote{border-inline-start:3px solid var(--nb-accent)}

/* Post navigation mirrors so "previous" stays on the reading edge. */
[dir="rtl"] .nb-post-nav .nav-next a{text-align:left;align-items:flex-start}
[dir="rtl"] .nb-post-nav .nav-previous a{text-align:right;align-items:flex-end}

/* The skip link and toast anchor to the right. */
[dir="rtl"] .nb-toast{inset-inline-start:auto;inset-inline-end:16px}

/* Latin brand names and handles keep their own direction. */
[dir="rtl"] .nb-handle,
[dir="rtl"] .nb-profile-handle{direction:ltr;unicode-bidi:embed}
