.hero {
  padding: 0px 20px 0px;
  margin-bottom: 10px;
}

/* Default = LTR (left aligned) */
.hero-title,
.hero-description {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* Title */
.hero-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  letter-spacing: -0.5px;
  max-width: 900px;
  margin-bottom: 16px;
}

/* Description */
.hero-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* ===== RTL Support ===== */
:dir(rtl) .hero-title,
:dir(rtl) .hero-description {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}

/* ===== Desktop ===== */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-description {
    font-size: 18px;
  }
}
