/*
|--------------------------------------------------------------------------
| Page Header — Inner Pages
|--------------------------------------------------------------------------
*/

.page-header {
    position: relative;
    padding: 160px var(--space-2xl) 64px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-600) 100%);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
    max-width: 60%;
}

.page-header-subtitle {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 700px;
}

.page-header-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    text-underline-offset: 3px;
    transition: var(--transition);
}

.page-header-link:hover {
    text-decoration-color: var(--white);
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: var(--text-sm);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.2);
}

.page-breadcrumb-current {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .page-header {
        padding: 120px 20px 48px;
    }

    .page-header-title {
        max-width: 100%;
    }
}