/* ─────────────────────────────────────────────────────────────
   DeedGate — RTL adjustments
   The new design system uses CSS logical properties (margin-inline,
   padding-inline) and `dir="rtl"` on <html>, so most layout flips
   automatically. This file holds the few cases that still need it.
   ───────────────────────────────────────────────────────────── */

/* Mirror the breadcrumb separator (chevron) in RTL */
[dir="rtl"] .breadcrumb__sep,
[dir="rtl"] .breadcrumbs__sep {
  transform: scaleX(-1);
  display: inline-block;
}

/* Arrow icons inside buttons point the other way in RTL */
[dir="rtl"] .btn--ghost svg,
[dir="rtl"] .project-card__cta svg,
[dir="rtl"] .unit-card__details svg {
  transform: scaleX(-1);
}
