/**
 * blocks/hero/hero.css
 */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 3rem;
  display: flex;
  align-items: center;
  min-height: clamp(360px, 55dvh, 620px);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 12, 0.55) 0%, rgba(11, 16, 12, 0.88) 100%);
  z-index: -1;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 720px;
}
.breadcrumb { margin-bottom: 0.5rem; }
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-heading-accent);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.hero__title {
  color: var(--color-white);
  margin-bottom: 0.25rem;
}
.hero__subtitle {
  color: var(--color-text-main);
  font-size: clamp(15px, 1.6vw, 18px);
  margin-bottom: 0.5rem;
}
.hero__cta { margin-top: 0.5rem; }
