/* ==============================================
   Page Hero Banner
   ============================================== */
.ch-page-hero {
  background: var(--surface);
  border-bottom: 1px solid rgba(168, 184, 200, 0.12);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

/* Optional background image */
.ch-page-hero-has-bg {
  background-color: var(--surface);
  background-size: cover;
  background-position: center;
}

.ch-page-hero-has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 14, 28, 0.88);
  z-index: 1;
}

/* Ghost text */
.ch-page-hero-ghost {
  position: absolute;
  right: -20px;
  top: -20px;
  font-family: 'Anton', sans-serif;
  font-size: 200px;
  font-weight: 400;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--silver-light, #D8E4EE);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: 4px;
  z-index: 0;
}

.ch-page-hero-has-bg .ch-page-hero-ghost {
  z-index: 2;
}

/* Inner content */
.ch-page-hero-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 3;
}

/* Breadcrumbs */
.ch-page-hero-breadcrumbs {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.ch-page-hero-breadcrumbs a {
  color: var(--silver);
  text-decoration: none;
  transition: color 0.15s;
}

.ch-page-hero-breadcrumbs a:hover {
  color: var(--white);
}

.ch-page-hero-sep {
  color: rgba(168, 184, 200, 0.3);
  font-size: 11px;
}

.ch-page-hero-current {
  color: var(--white);
}

/* Title */
.ch-page-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin: 0;
}
