/**
 * hero.css — BEM: hero, hero__*
 */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 15rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 34, 34, 0.35) 0%, rgba(36, 34, 34, 0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 1.5rem 2rem;
  max-width: 44rem;
}

.hero__breadcrumb {
  margin-bottom: 1rem;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-card);
  background-color: rgba(255, 179, 117, 0.12);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
}

.hero__rating-stars {
  color: var(--color-heading-gold);
  letter-spacing: 1px;
}

.hero__rating-text {
  color: var(--color-white);
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: var(--color-white);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 1.75rem;
  max-width: 40ch;
}

.hero__cta {
  width: 100%;
}

@media (min-width: 480px) {
  .hero__cta {
    width: auto;
  }
}

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

  .hero__content {
    padding-block: 2rem 3rem;
  }
}
