.hero {
  position: relative;
  min-height: 410px;
  padding: 40px 48px;
  align-items: center;
  justify-content: flex-start;
  color: var(--ink);
  background: #e6edea;
  border: 1px solid #d8dfdd;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #17332f21 0%, transparent 45%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(480px, 52%);
  padding: 32px 34px;
  border-radius: 20px;
  color: var(--ink);
  background: #fffffff2;
  box-shadow: 0 18px 50px #17332f26;
  backdrop-filter: blur(5px);
}

.hero .eyebrow {
  color: var(--green);
}

.hero h1 {
  margin: 10px 0 14px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -2.2px;
}

.hero p {
  max-width: 410px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero .button.light {
  width: 100%;
  margin-top: 4px;
  color: white;
  background: var(--green);
}

[dir="rtl"] .hero {
  justify-content: flex-start;
  background: #e6edea;
}

[dir="rtl"] .hero-image {
  transform: scaleX(-1);
}

[dir="rtl"] .hero::after {
  background: linear-gradient(270deg, #17332f21 0%, transparent 45%);
}

@media (max-width: 900px) {
  .hero {
    min-height: 400px;
    padding: 28px;
  }

  .hero-copy {
    width: min(460px, 60%);
    padding: 26px 28px;
  }

  .hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 470px;
    padding: 16px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 68% center;
  }

  [dir="rtl"] .hero-image {
    object-position: 32% center;
  }

  .hero-copy {
    width: 100%;
    padding: 22px 24px;
  }

  .hero h1 {
    font-size: 31px;
    letter-spacing: -1.4px;
  }

  .hero p {
    font-size: 15px;
  }
}
