/* ============================================================
   Location Hub — Guides CTA
   File: assets/css/hub/hub-guides.css
   Scope: .hub-guides__* classes only
   Reusable "helpful guides" band (navy): centered heading + a single
   flowing sentence with underlined inline guide links. Figma: "CTA"
   node 2236:717. Default OFF; opt-in per page.
   ============================================================ */

.hub-guides {
    background: var(--hub-navy);
    color: var(--hub-white);
    padding: 50px 0;
}

.hub-guides .container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.hub-guides__heading {
    font-family: var(--hub-font-serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--hub-white);
    margin: 0;
}

.hub-guides__lead {
    font-family: var(--hub-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: -0.04em;
    color: var(--hub-white);
    margin: 0;
}

.hub-guides__link {
    color: var(--hub-white);
    text-decoration: underline;
    transition: opacity 0.15s;
}

a.hub-guides__link:hover {
    opacity: 0.7;
    color: var(--hub-white);
    text-decoration: underline;
}

span.hub-guides__link {
    text-decoration: underline;
    opacity: 0.7;
}


/* ============================
   RESPONSIVE — GUIDES
   ============================ */

@media (max-width: 768px) {
    .hub-guides {
        padding: 32px 0;
    }

    .hub-guides .container {
        padding: 0 24px;
        gap: 16px;
    }

    .hub-guides__heading {
        font-size: 24px;
    }
}
