.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 60vh, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(33, 7, 40, 0.55) 0%,
      rgba(23, 5, 29, 0.82) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(33, 7, 40, 0.35), rgba(23, 5, 29, 0.9));
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-block: 2.5rem;
  max-width: 760px;
}

.hero__breadcrumb {
  padding-top: 0;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(23, 5, 29, 0.6);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
}

.hero__stars {
  display: inline-flex;
  gap: 2px;
  font-size: 1.1rem;
  color: rgba(241, 244, 244, 0.3);
}

.hero__star.is-full {
  color: var(--accent-light);
}

.hero__star.is-half {
  background: linear-gradient(90deg, var(--accent-light) 50%, rgba(241, 244, 244, 0.3) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__rating-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero__title {
  color: var(--white);
  margin: 0;
}

.hero__subtitle {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0;
  max-width: 60ch;
}

.hero__cta {
  margin-top: 0.5rem;
}

.hero__btn {
  padding-inline: 2rem;
  font-size: 1.05rem;
}
