/* ==========================================================================
   INNER PAGE HERO — compact title banner used on every page but the home
   ========================================================================== */
.page-banner {
  position: relative;
  padding-top: calc(var(--nav-height) + 5.5rem);
  padding-bottom: 4.5rem;
  overflow: hidden;
  background: var(--deep-teal);
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22;
}
.page-banner-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,38,36,0.55) 0%, var(--deep-teal) 92%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 1px;
  color: var(--ink-muted);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.breadcrumb a { text-decoration: none; color: var(--ink-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--turmeric); }
.breadcrumb .sep { color: rgba(217,154,43,0.4); }
.breadcrumb .current { color: var(--turmeric); }

.page-banner-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.page-banner-title .word { display: inline-block; transform: translateY(110%); }

.page-banner-content .rule-gold {
  margin: 1.3rem auto 1.5rem;
}

.page-banner-sub {
  color: var(--ink-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-banner-wheel {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 150px;
  opacity: 0.18;
}

@media (max-width: 768px) {
  .page-banner { padding-top: calc(var(--nav-height) + 3rem); padding-bottom: 3rem; }
  .page-banner-wheel { display: none; }
}
