/* ==============================================
   Page Hero Banner
   ============================================== */
.mn-page-hero {
  background: var(--primary);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.06) 40px,
    rgba(0, 0, 0, 0.06) 80px
  );
  border-bottom: 4px solid var(--secondary);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

/* Optional background image behind stripes */
.mn-page-hero-has-bg {
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
}

.mn-page-hero-has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0, 0, 0, 0.06) 40px,
    rgba(0, 0, 0, 0.06) 80px
  );
  opacity: 0.85;
  z-index: 1;
}

/* Ghost text */
.mn-page-hero-ghost {
  position: absolute;
  right: -20px;
  top: -20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.15);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

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

/* Inner content */
.mn-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 */
.mn-page-hero-breadcrumbs {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.mn-page-hero-breadcrumbs a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.mn-page-hero-breadcrumbs a:hover {
  color: #fff;
}

.mn-page-hero-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.mn-page-hero-current {
  color: var(--secondary);
}

/* Title */
.mn-page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  margin: 0;
}
