/* ============================================================
   Location Spoke — Reality
   File: assets/css/spoke/spoke-reality.css
   Scope: .spoke-reality__* classes only
   Figma: "Reality Block" node 2202:304 — cream bg, 2-col.
   Left: eyebrow / H2 / body paragraphs / 5-item checklist / CTA.
   Right: solid blue panel (no image) with optional heading + text.
   ============================================================ */

.spoke-reality__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 550px;
    gap: 120px;
    align-items: start;
}

.spoke-reality__col {
    max-width: 550px;
}

.spoke-reality__heading {
    color: var(--spoke-navy);
}

.spoke-reality__body {
    font-family: var(--spoke-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: -0.04em;
    color: var(--spoke-navy);
    margin: 0 0 24px;
}

.spoke-reality__body a {
    color: var(--spoke-navy);
    text-decoration: underline;
    transition: color 0.15s ease;
}

.spoke-reality__body a:hover,
.spoke-reality__body a:focus {
    color: var(--spoke-blue);
}

/* ============================
   CHECKLIST
   ============================ */

.spoke-reality__checks {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spoke-reality__check {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.spoke-reality__check-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin-top: -3px;
}

.spoke-reality__check-text {
    font-family: var(--spoke-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: -0.04em;
    color: var(--spoke-navy);
}

.spoke-reality__cta {
    margin-top: 8px;
}

/* ============================
   BLUE PANEL (right column)
   ============================ */

.spoke-reality__panel {
    background: var(--spoke-blue);
    color: var(--spoke-white);
    border-radius: var(--spoke-radius-card);
    min-height: 650px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

/* Map variant: iframe fills the panel edge-to-edge inside the rounded box */
.spoke-reality__panel--map {
    padding: 0;
    display: block;
    overflow: hidden;
}

.spoke-reality__map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 650px;
    border: 0;
    border-radius: var(--spoke-radius-card);
}

.spoke-reality__panel-heading {
    font-family: var(--spoke-font-serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--spoke-white);
    margin: 0;
}

.spoke-reality__panel-text {
    font-family: var(--spoke-font-sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: -0.04em;
    color: var(--spoke-white);
}

/* ============================
   RESPONSIVE — REALITY
   ============================ */

@media (max-width: 1024px) {
    .spoke-reality__grid {
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 56px;
    }

    .spoke-reality__panel {
        min-height: 520px;
        padding: 40px;
    }

    .spoke-reality__map {
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .spoke-reality__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spoke-reality__col {
        max-width: none;
    }

    .spoke-reality__panel {
        min-height: 0;
        padding: 32px 24px;
    }

    .spoke-reality__panel--map {
        padding: 0;
    }

    .spoke-reality__map {
        min-height: 420px;
    }

    .spoke-reality__panel-heading {
        font-size: 26px;
    }
}
