/* hero.css */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 52vh, 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.85) 100%),
    linear-gradient(90deg, rgba(23, 5, 29, 0.9) 0%, rgba(23, 5, 29, 0.2) 70%);
}
.hero__inner {
  padding-block: clamp(2rem, 5vw, 4rem);
  max-width: 760px;
}
.hero__inner .breadcrumb { padding-top: 0; margin-bottom: 1rem; }

.hero__rating { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 0.75rem; margin-bottom: 1rem; }
.hero__stars { font-size: 1.15rem; letter-spacing: 2px; }
.hero__star { color: rgba(255, 255, 255, 0.25); }
.hero__star.is-full { color: var(--color-heading); }
.hero__star.is-half {
  background: linear-gradient(90deg, var(--color-heading) 50%, rgba(255,255,255,0.25) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__rating-value { color: var(--color-white); font-weight: var(--fw-bold); }
.hero__rating-text { color: var(--color-text); font-size: 0.9rem; }

.hero__title { color: var(--color-white); margin-bottom: 1rem; }
.hero__sub { color: var(--color-text); font-size: clamp(1rem, 1.8vw, 1.2rem); max-width: 60ch; }
.hero__cta { margin-top: 1.75rem; }
