/* ===== Reusable page hero ===== */
.page-hero {
    padding: 110px 0 90px;
}

.page-hero__crumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page-hero__crumbs li {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}
.page-hero__crumbs a {
    text-decoration: none;
    transition: color 0.2s ease;
}
.page-hero__crumbs li.sep {
    opacity: 0.6;
    line-height: 0;
}

.page-hero__eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-hero__title {
    margin: 0 0 22px;
}

.page-hero__subtitle {
    max-width: 720px;
    margin: 0;
}

/* ---- Variant: dark (default) ---- */
.page-hero--dark {
    background: #064e2f;
    color: #fff;
}
.page-hero--dark .page-hero__crumbs li,
.page-hero--dark .page-hero__crumbs a,
.page-hero--dark .page-hero__eyebrow {
    color: rgba(255, 255, 255, 0.85);
}
.page-hero--dark .page-hero__crumbs a:hover {
    color: #fff;
    text-decoration: underline;
}
.page-hero--dark .page-hero__crumbs li.active,
.page-hero--dark .page-hero__title {
    color: #fff;
}
.page-hero--dark .page-hero__crumbs li.active {
    font-weight: 600;
}
.page-hero--dark .page-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
}

/* ---- Variant: white ---- */
.page-hero--white {
    background: #ffffff;
    color: #1f1f25;
}
.page-hero--white .page-hero__crumbs li,
.page-hero--white .page-hero__crumbs a {
    color: #6b6b75;
}
.page-hero--white .page-hero__crumbs a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.page-hero--white .page-hero__crumbs li.active {
    color: #1f1f25;
    font-weight: 600;
}
.page-hero--white .page-hero__eyebrow {
    color: var(--color-primary);
}
.page-hero--white .page-hero__title {
    color: #1f1f25;
}
.page-hero--white .page-hero__subtitle {
    color: #4d4d55;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 70px 0 55px;
    }
    .page-hero__crumbs {
        margin-bottom: 20px;
    }
    .page-hero__eyebrow {
        margin-bottom: 16px;
    }
}
