/* ==========================================================================
   Hero block
   ========================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 55vh, 560px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 29, 0.55) 0%, rgba(7, 11, 29, 0.95) 100%);
}
.hero__content {
  position: relative;
  padding-block: 2.5rem;
  max-width: 46rem;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: var(--fs-small);
  margin-bottom: 0.75rem;
}
.hero__rating-stars { color: var(--color-heading-gold); letter-spacing: 0.1em; }
.hero__title { margin-bottom: 0.9rem; }
.hero__subtitle {
  color: var(--color-white);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  margin-bottom: 1.5rem;
}
.hero__cta { margin-top: 0.25rem; }

@media (min-width: 768px) {
  .hero { min-height: clamp(420px, 60vh, 620px); }
}
