/* Inner-page hero banner — matches homepage anj-banner aesthetic */

.anj-page-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f4fbf7 38%, #fff9eb 72%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 200, 104, 0.12);
}

.anj-page-banner__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    pointer-events: none;
}

.anj-page-banner__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.72) 100%);
}

.anj-page-banner__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 90% 15%, rgba(0, 200, 104, 0.12), transparent 55%),
        radial-gradient(ellipse 35% 30% at 8% 85%, rgba(255, 170, 0, 0.1), transparent 50%);
}

.anj-page-banner__grid {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.anj-page-banner .container {
    position: relative;
    z-index: 2;
}

.anj-page-banner__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: clamp(200px, 32vh, 320px);
    padding: clamp(2rem, 4vw, 3rem) 0;
    max-width: 820px;
}

.anj-page-banner__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--f-primary-neon, #00c868);
    background: rgba(0, 200, 104, 0.08);
    border: 1px solid rgba(0, 200, 104, 0.22);
    margin: 0 0 1rem;
}

.anj-page-banner__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--f-text-main, #0f172a) !important;
}

.anj-page-banner__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 600;
}

.anj-page-banner__breadcrumb .breadcrumb-item {
    color: var(--f-text-muted, #64748b);
}

.anj-page-banner__breadcrumb .breadcrumb-item a {
    color: var(--f-text-muted, #64748b);
    text-decoration: none;
    transition: color 0.2s ease;
}

.anj-page-banner__breadcrumb .breadcrumb-item a:hover {
    color: var(--f-primary-neon, #00c868);
}

.anj-page-banner__breadcrumb .breadcrumb-item.active {
    color: var(--f-text-main, #0f172a);
    font-weight: 700;
}

.anj-page-banner__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 10px;
    color: rgba(100, 116, 139, 0.5);
    font-weight: 400;
}

.anj-page-banner--compact .anj-page-banner__inner {
    min-height: clamp(160px, 24vh, 240px);
    padding: 1.75rem 0;
}

.breadcrumb-strip {
    background: #f8faf9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.breadcrumb-strip__trail {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.breadcrumb-strip__trail .breadcrumb-item,
.breadcrumb-strip__trail .breadcrumb-item a {
    color: #64748b;
}

.breadcrumb-strip__trail .breadcrumb-item a:hover {
    color: #00c868;
}

.breadcrumb-strip__trail .breadcrumb-item.active {
    color: #0f172a;
    font-weight: 700;
}

.breadcrumb-strip__trail .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(100, 116, 139, 0.45);
}
