/* ================================================================
   PAGES.CSS — Shared inner page styles (hero, breadcrumb, etc.)
   ================================================================ */

/* ── INNER PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #060E1A 0%, #0A1628 55%, #0D2045 100%);
  /* offset exactly for the fixed navbar */
  padding-top: var(--nav-h, 72px);
  min-height: calc(380px + var(--nav-h, 72px));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative glow blob top-right */
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,115,232,0.22) 0%, transparent 70%);
  top: -130px; right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

/* Decorative glow blob bottom-left */
.page-hero::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(91,164,255,0.12) 0%, transparent 70%);
  bottom: -100px; left: -60px;
  border-radius: 50%;
  pointer-events: none;
}

/* ── HERO INNER CONTENT ──────────────────────────────────────── */
.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  /* Push content well clear of the 72px navbar */
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  width: 100%;
}

/* Badge pill */
.page-hero__inner .section__badge {
  background: rgba(26,115,232,0.18);
  border: 1px solid rgba(26,115,232,0.35);
  color: #89BAFF;
  display: inline-flex;
  margin-bottom: 1.25rem;
}

/* Heading */
.page-hero__inner h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.1rem;
  margin-top: 0;
}

/* Subtitle */
.page-hero__inner p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── PAGE BREADCRUMB BAR ─────────────────────────────────────── */
.page-breadcrumb {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  padding: 0.7rem 0;
  position: relative;
  z-index: 1;
}

.page-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  justify-content: center;
}

.page-breadcrumb__inner a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.25s;
}

.page-breadcrumb__inner a:hover { color: #fff; }

.page-breadcrumb__inner .sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
}

.page-breadcrumb__inner .current {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero { min-height: 300px; }
  .page-hero__inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .page-hero__inner h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
}

@media (max-width: 480px) {
  .page-hero__inner { padding-top: 2rem; padding-bottom: 2rem; }
}
