/* An absolute content layer: the existing video and frame geometry stay untouched. */
.hero-content-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 40px 48px;
  pointer-events: none;
  direction: ltr;
}

html[dir="rtl"] .hero-content-overlay { direction: rtl; }

.hero-content-copy {
  position: relative;
  isolation: isolate;
  max-width: 540px;
  text-align: start;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-content-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -40px -48px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62), transparent 72%);
  pointer-events: none;
}

.hero-content-copy h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

.hero-content-motto {
  margin: 10px 0 0;
  font-size: 23px;
  line-height: 1.4;
}

.hero-content-description {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.hero-content-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  pointer-events: auto;
}

.hero-content-actions .button {
  min-height: 46px;
  min-width: 136px;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-content-actions .button.ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .hero-content-overlay { padding: 24px; }
  .hero-content-copy h1 { font-size: 23px; }
  .hero-content-motto { font-size: 19px; margin-top: 6px; }
  .hero-content-actions { margin-top: 12px; }
}

@media (max-width: 540px) {
  .hero-content-overlay { padding: 8px 12px; }
  .hero-content-copy { width: max-content; max-width: 100%; }
  .hero-content-copy::before { inset: -12px -14px; }
  .hero-content-copy h1 { font-size: 12px; line-height: 16px; }
  .hero-content-motto { font-size: 13px; line-height: 17px; margin-top: 1px; }
  .hero-content-description { font-size: 10px; line-height: 14px; margin-top: 1px; }
  .hero-content-actions { gap: 6px; margin-top: 3px; }
  .hero-content-actions .button {
    min-height: 44px;
    min-width: 88px;
    padding: 8px;
    font-size: 10px;
  }
  html[lang="ar"] .hero-content-copy h1 { line-height: 16px; }
  html[lang="ar"] .hero-content-motto { line-height: 17px; }
  html[lang="ar"] .hero-content-description { line-height: 14px; }
}
