/* ===== Page Header (Interior Pages) ===== */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 156px 0 88px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(215, 156, 98, 0.18), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(145deg, #10213a 0%, #18365b 58%, #214a73 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.page-header::before {
  top: 88px;
  left: 50%;
  width: min(860px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.page-header::after {
  right: -120px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 156, 98, 0.18) 0%, transparent 68%);
}

.page-header .container {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.page-header h1 {
  color: var(--white);
  margin: 0 auto 18px;
  max-width: 14ch;
}

.page-header p {
  color: rgba(219, 228, 239, 0.84);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 660px;
  margin: 0 auto;
}

.page-header .section-tag {
  color: var(--accent-light);
  margin-bottom: 18px;
}

.page-header .section-tag::before {
  opacity: 0.75;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(219, 228, 239, 0.8);
}

.page-breadcrumb a {
  color: rgba(252, 251, 248, 0.9);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .page-header {
    padding: 138px 0 74px;
  }

  .page-header h1 {
    max-width: 12ch;
  }

  .page-header p {
    font-size: 1rem;
  }
}
