/* ============================================================
   Location Hub — Help
   File: assets/css/hub/hub-help.css
   Scope: .hub-help__* classes only
   Figma: "Help Block" node 2115:347 — cream bg, 3-column text grid
   (Underpaid / Stuck / Denied).
   ============================================================ */

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

.hub-help__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.hub-help__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;
}

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

.hub-help__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hub-gap-cards);
    margin-bottom: 48px;
}

.hub-help__item {
    background: var(--hub-white);
    border-radius: var(--hub-radius-card);
    padding: 32px;
}

.hub-help__item-title {
    font-family: var(--hub-font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: var(--hub-navy);
    margin: 0 0 12px;
}

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

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


/* ============================
   RESPONSIVE — HELP
   ============================ */

@media (max-width: 992px) {
    .hub-help__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hub-help__heading {
        font-size: 32px;
    }
}
