.hero {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--c-bg-dark);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(23, 5, 29, 0.72) 0%,
    rgba(33, 7, 40, 0.82) 100%
  );
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  min-height: clamp(340px, 52vh, 520px);
  justify-content: center;
  padding-block: var(--space-section);
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(23, 5, 29, 0.6);
  border: 1px solid rgba(255, 211, 41, 0.35);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}

.hero__stars {
  display: inline-flex;
  gap: 2px;
}

.hero__star {
  width: 18px;
  height: 18px;
  fill: rgba(241, 244, 244, 0.25);
}

.hero__star.is-filled {
  fill: var(--c-accent-light);
}

.hero__rating-value {
  color: var(--c-white);
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
}

.hero__title {
  max-width: 18ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero__subtitle {
  max-width: 56ch;
  color: var(--c-white);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  margin-top: 0.5rem;
}
