/* V29 — Arabic Ur hero typography correction.
   Tahoma's Arabic ascenders exceed the very tight Latin display line box used by the base hero.
   Give the Arabic title a proper line box and slightly reduce the display scale so the eyebrow,
   title and deck remain visually separated at desktop and mobile widths. */
html[lang="ar"] .hero .eyebrow{
  max-width:920px;
  line-height:1.75;
  margin-bottom:.55rem;
}
html[lang="ar"] .hero h1{
  font-size:clamp(7rem,11vw,11rem);
  line-height:1.08;
  margin:1.2rem 0 1.6rem;
}
html[lang="ar"] .hero-deck{
  max-width:920px;
  line-height:1.62;
}
@media(max-width:720px){
  html[lang="ar"] .hero-content{padding-top:5rem}
  html[lang="ar"] .hero h1{
    font-size:clamp(5.5rem,28vw,8rem);
    line-height:1.1;
    margin:1rem 0 1.35rem;
  }
  html[lang="ar"] .hero .eyebrow{line-height:1.7;margin-bottom:.35rem}
  html[lang="ar"] .hero-deck{line-height:1.68}
}
