
/* Stronger RTL-only spacing to fully avoid overlaps */
html[dir="rtl"] .sector-card{
  position: relative;
  padding-inline-start: 200px; /* reserve wider space on the left */
}
html[dir="rtl"] .sector-card h4,
html[dir="rtl"] .sector-card p{
  position: relative;
  z-index: 3;
}
html[dir="rtl"] .sector-card img[src*="tile-"]{
  position: absolute;
  inset: auto auto 20px 24px; /* bottom-left corner */
  inline-size: 110px;         /* slightly larger but outside text box */
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.12));
}
@media (max-width: 900px){
  html[dir="rtl"] .sector-card{ padding-inline-start: 160px; }
  html[dir="rtl"] .sector-card img[src*="tile-"]{ inline-size: 90px; }
}
@media (max-width: 640px){
  html[dir="rtl"] .sector-card{ padding-inline-start: 130px; }
  html[dir="rtl"] .sector-card img[src*="tile-"]{ inline-size: 72px; }
}
