/* ============================================================
   Location Hub — What We Do
   File: assets/css/hub/hub-wwd.css
   Scope: .hub-wwd__* classes only
   Figma: "What We Do Block" node 2108:206 — cream bg, two-panel
   comparison (light "Your Public Adjuster" vs dark "The Insurer's Adjuster").
   ============================================================ */

.hub-wwd {
    background: var(--hub-cream);
    color: var(--hub-navy);
    padding: var(--hub-section-pad) 0;
}

.hub-wwd__header {
    text-align: center;
    margin: 0 auto 48px;
}

.hub-wwd__heading {
    font-family: var(--hub-font-serif);
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--hub-navy);
    margin: 0 0 16px;
    white-space: nowrap;
}

.hub-wwd__body {
    font-family: var(--hub-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    color: var(--hub-grey-dark);
    max-width: 720px;
    margin: 0 auto;
}

.hub-wwd__graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--hub-gap-cards);
    max-width: 900px;
    margin: 0 auto 48px;
}

.hub-wwd__panel {
    border-radius: var(--hub-radius-card);
    padding: 40px;
}

.hub-wwd__panel--light {
    background: var(--hub-white);
    color: var(--hub-navy);
}

.hub-wwd__panel--dark {
    background: var(--hub-navy);
    color: var(--hub-cream);
}

.hub-wwd__panel-title {
    font-family: var(--hub-font-serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
}

.hub-wwd__panel-body {
    font-family: var(--hub-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    margin: 0;
}

.hub-wwd__panel--light .hub-wwd__panel-body {
    color: var(--hub-grey);
}

.hub-wwd__panel--dark .hub-wwd__panel-body {
    color: var(--hub-stat-label);
}

.hub-wwd__cta {
    text-align: center;
}


/* ============================
   RESPONSIVE — WHAT WE DO
   ============================ */

@media (max-width: 768px) {
    .hub-wwd__heading {
        font-size: 32px;
        white-space: normal;
        text-wrap: balance;
    }

    .hub-wwd__graphic {
        grid-template-columns: 1fr;
    }

    .hub-wwd__panel {
        padding: 28px;
    }
}
