/* ==========================================================================
   9wickets — SITE-WIDE "slim full-width hero + closing CTA" pattern
   --------------------------------------------------------------------------
   Generalizes the /agent-list/ page's hero (w9a-hero2 in
   wp-content/mu-plugins/w9-agents/agent-list-page.css) into a page-agnostic
   version for every other inner page that still used the old light-cream
   `.s5-ihero` hero: master/super/admin/sub-admin agent list, new-account,
   customer-service, complaints-feedback, FAQ. Same navy-mesh full-bleed
   background, same gold eyebrow / white heading / stat-stripe / button-row
   recipe — just centered as a single column (`.w9ip-hero`) since none of
   these pages have a per-page portrait photo the way the main agent
   directory does; the split image+badge layout that lives in
   agent-list-page.css stays specific to that one page.
   Enqueued globally (same unconditional wp_enqueue_scripts block as every
   other w9-vk sitewide layer), so these classes are available on any page.
   ========================================================================== */

.w9ip-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 180% at 100% -20%, rgba(249,233,0,.08), transparent 55%),
        linear-gradient(135deg, #08415C 0%, #052A3D 100%);
    padding: 44px var(--vk-pad, 24px);
}
.w9ip-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(249,233,0,.16) 1.4px, transparent 1.4px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}
.w9ip-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.w9ip-hero__inner .b9g-eyebrow { background: rgba(249,233,0,.16); color: #F9E900 !important; }
/* `body.vk` prefix: beats wickets-home.css's late, high-specificity
   `body.vk h1..h5{color:#08415C !important}` override — same navy-on-navy
   trap already hit and fixed on the agent-list hero title. */
body.vk .w9ip-hero__title {
    color: #fff !important;
    font-family: var(--vk-font-display);
    font-weight: 700;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.22;
    margin: 12px 0 12px;
}
.w9ip-hero__lead {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
    max-width: 620px;
    margin: 0 auto 18px;
}
.w9ip-hero__stripe {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 24px;
    font-family: var(--vk-font-bn);
    font-size: 13px;
    font-weight: 700;
    color: #F9E900;
}
.w9ip-hero__stripe span { color: rgba(255,255,255,.5); font-weight: 400; }
.w9ip-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* ---- closing CTA lead paragraph — buttons/eyebrow/h2 reuse the shared
   b9g-* classes as-is (exact vp0016 home-page pattern); this is just the
   lead-paragraph color/sizing that pattern needs. ---- */
.w9ip-cta__lead {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
    max-width: 560px;
    margin: 8px auto 0;
}

@media (max-width: 767px) {
    .w9ip-hero { padding: 30px 20px; }
}
