.bc-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  color: #111111;
}

.bc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 55%,
    rgba(255, 255, 255, 0.78) 100%
  );
}

/* Keep it empty for now (image-only hero). */
.bc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bc-hero__content {
  text-align: right;
  max-width: 820px;
  padding-right: clamp(0px, 4vw, 18px);
  transform: translateY(-145px);
}

.bc-hero__title {
  font-size: clamp(40px, 4.4vw, 86px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 14px;
}

.bc-hero__arabic {
  font-size: clamp(44px, 4.5vw, 92px);
  line-height: 1.1;
  margin: 40px 0 0;
  color: #111111;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 2px 0 rgba(0, 0, 0, 0.07),
    0 3px 0 rgba(0, 0, 0, 0.08),
    0 4px 0 rgba(0, 0, 0, 0.09),
    0 10px 18px rgba(0, 0, 0, 0.18);
}

.hero-line-ar {
  font-family: "Reem Kufi", sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
}

@media (max-width: 640px) {
  .bc-hero__content {
    max-width: 100%;
  }
}
