/* ==========================================================================
   blocks/hero/hero.css
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84dvh;
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 18, 0.35) 0%, rgba(20, 18, 18, 0.85) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 2.5rem;
  max-width: 46rem;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 179, 117, 0.14);
  color: var(--color-heading-gold);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: 1rem;
}

.hero__title {
  margin-bottom: 0.85rem;
}

.hero__subtitle {
  color: var(--color-white);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

.hero .breadcrumb {
  color: rgba(245, 241, 234, 0.75);
}

@media (min-width: 768px) {
  .hero {
    min-height: 64dvh;
  }
}
