/* ===== Shared inner-page header/hero (resources/views/components/page-header.blade.php) ===== */
.page-header-hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-color: var(--vc, #2e0044);
    color: #fff;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-header-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46, 0, 68, .35) 0%, rgba(46, 0, 68, .88) 100%);
}

.page-header-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-header-hero__crumb {
    display: block;
    color: #d9c4e6;
    font-size: 13px;
    margin-bottom: 12px;
}

.page-header-hero__crumb a {
    color: #f0d7ff;
    text-decoration: none;
}

.page-header-hero__crumb a:hover {
    text-decoration: underline;
}

.page-header-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.page-header-hero__subtitle {
    font-size: 16px;
    max-width: 640px;
    opacity: .92;
    margin: 0;
}

.page-header-hero__meta {
    margin-top: 8px;
}

.page-header-hero__country {
    display: inline-block;
    font-size: 18px;
    opacity: .9;
    margin-bottom: 10px;
}

.page-header-hero .chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, .22);
}

.page-header-hero .chip i {
    color: var(--cyc, #FFAB00);
}

.page-header-hero__badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    background: var(--rc, #e53935);
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(229, 57, 53, .35);
    font-size: 14px;
    letter-spacing: .5px;
}

html[dir="rtl"] .page-header-hero__badge {
    right: auto;
    left: 20px;
}

/* About page value-prop list */
.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--arc, #424242);
    font-size: 15px;
    line-height: 1.6;
}

.about-points li i {
    color: var(--vc, #2e0044);
    margin-top: 4px;
}

/* Compact variant — utility/auth/form pages: no photo, just the brand gradient */
.page-header-hero--sm {
    min-height: 150px;
    background-image: none !important;
    align-items: center;
    text-align: center;
}

.page-header-hero--sm::before {
    background: linear-gradient(135deg, var(--vc, #2e0044), #4a1e6b);
}

.page-header-hero--sm .container {
    padding-top: 32px;
    padding-bottom: 32px;
}

.page-header-hero--sm h1 {
    font-size: 26px;
    margin-bottom: 4px;
}

.page-header-hero--sm .page-header-hero__crumb {
    margin-bottom: 6px;
}

@media (max-width: 991px) {
    .page-header-hero {
        min-height: 280px;
    }

    .page-header-hero h1 {
        font-size: 30px;
    }
}
