/* ============================================================
   HERO — National Casino
   ============================================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  padding-top: 3rem;
  overflow: hidden;
  background: var(--color-bg-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 0 2rem;
  max-width: 720px;
}
/* Compact hero for pages with short banner images (1920×440) */
.hero--compact {
  min-height: 300px;
  padding-top: 2rem;
}
.hero--compact .hero__bg {
  object-position: center top;
}
.hero__breadcrumb { margin-bottom: 0.75rem; }
.hero__rating { margin-bottom: 0.5rem; }
.hero__title {
  font-size: var(--font-size-h1);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.hero__subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--color-white);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .hero { min-height: 360px; padding-top: 2rem; }
  .hero--compact { min-height: 240px; padding-top: 1.5rem; }
}
