.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 52vh, 520px);
  display: flex;
  align-items: center;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(13, 30, 33, 0.92) 0%, rgba(13, 30, 33, 0.78) 45%, rgba(20, 41, 43, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 760px;
}

.hero__breadcrumb {
  padding: 0 0 1.25rem;
}

.hero__rating {
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: var(--fs-h1);
  line-height: var(--lh-banner);
  font-weight: 800;
  margin-bottom: 1.1rem;
}

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

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
