/* ==========================================================================
   Hero banner
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 52dvh, 560px);
  background: var(--color-bg-dark);
}

.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.88) 100%),
    var(--color-overlay);
}

.hero__inner {
  padding-block: var(--space-section);
  max-width: 820px;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1.1rem;
  background: rgba(23, 5, 29, 0.6);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-pill);
}

.hero__stars {
  display: inline-flex;
  gap: 2px;
  font-size: 1.05rem;
  line-height: 1;
}

.hero__star { color: rgba(255, 255, 255, 0.28); }
.hero__star.is-on { color: var(--color-accent-light); }

.hero__rating-num {
  color: var(--color-white);
  font-weight: var(--fw-bold);
}

.hero__rating-text {
  color: var(--color-text);
  font-size: var(--fs-small);
}

.hero__title {
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
  color: var(--color-white);
  font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.2rem);
  max-width: 62ch;
}

.hero__cta {
  margin-top: 1.6rem;
}

.hero .breadcrumb {
  margin-bottom: 1rem;
}

.hero .breadcrumb__item a,
.hero .breadcrumb__list {
  color: rgba(241, 244, 244, 0.82);
}
