/* ── Shared inner-page hero ─────────────────────────────────────────────── */

.page-hero .fade-in {
    opacity: 1;
    transform: none;
}

.page-hero {
    position: relative;
    padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(3.5rem, 6vw, 4.5rem);
    background: var(--gradient-dark);
    color: #fff;
    overflow: hidden;
}

/* Background-image variant: dark overlay keeps text readable */
.page-hero--has-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-hero--has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8, 21, 37, 0.82) 0%, rgba(30, 58, 95, 0.75) 55%, rgba(21, 45, 74, 0.82) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Glows */
.page-hero__glow-a,
.page-hero__glow-b {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.45;
}

.page-hero__glow-a {
    width: 320px;
    height: 320px;
    top: -80px;
    inset-inline-end: -60px;
    background: rgba(var(--accent-rgb), 0.35);
}

.page-hero__glow-b {
    width: 260px;
    height: 260px;
    bottom: -40px;
    inset-inline-start: -40px;
    background: rgba(249, 115, 22, 0.2);
}

/* Breadcrumb */
.page-hero__breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.15s;
}

.page-hero__breadcrumb a:hover {
    color: var(--accent-light);
}

.page-hero__breadcrumb li[aria-current="page"] {
    color: #fff;
    font-weight: 600;
}

/* Eyebrow kicker */
.page-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-light, #5bb7ee);
}

.page-hero__kicker-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* Heading & lead */
.page-hero__title {
    margin: 0 0 1rem;
    font-family: "Noto Kufi Arabic", sans-serif;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
    word-break: break-word;
}

.page-hero__lead {
    margin: 0;
    max-width: 42rem;
    font-size: clamp(1rem, 1.9vw, 1.125rem);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
    .page-hero .fade-in {
        transition: none;
    }
}
