:dir and :lang transpilation is a bit unreliable when used together with pseudo classes, pseudo elements and child selectors. In many cases they are not transpiled at all.
.foo:dir(rtl) ✅
:is(.foo:dir(rtl)) ✅
:where(.foo:dir(rtl)) 🚫
.foo:dir(rtl)::after 🚫
.foo:dir(rtl) div 🚫
Playground