/* ============================================
   CLOUDEMY — Page Header (Inner Pages)
   Shared by: about, contact, services, careers, etc.
   ============================================ */

.page-header {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(270deg, #a121ca 0%, #7b1fe4 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
/* Grid lines */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Top-right glow */
.page-header::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-header > .container {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  color: #fff;
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb__sep {
  font-size: 0.7rem;
}
