/* ==========================================================================
   Reckon Wealth — Content Cluster (GEO/SEO article + FAQ pages)
   Layered on top of woop-tokens.css + woop-chrome.css + tools.css.
   Article-style prose for /wealth/faq/, /no-email/, /privacy/, /monte-carlo/.
   All colors via semantic tokens; contrast verified AAA (see woop-tokens.css).
   ========================================================================== */

/* ── Header / lede ── */
.cluster-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--wealth);
    margin-bottom: 0.5rem;
}

.cluster-lede {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    font-weight: 300;
    margin-top: 0.75rem;
}

/* ── Article prose ── */
.cluster-prose h2 {
    font-family: var(--font-family-heading);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--foreground);
    line-height: 1.3;
    margin: 2.25rem 0 0.6rem;
    letter-spacing: -0.01em;
}

.cluster-prose p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cluster-prose p:last-child { margin-bottom: 0; }

.cluster-prose a {
    color: var(--wealth);
    font-weight: 500;
    text-underline-offset: 2px;
}

.cluster-prose a:hover { color: var(--wealth-hover); }

/* ── FAQ definition list ── */
.cluster-faq { margin: 0; }

.cluster-faq dt {
    font-family: var(--font-family-heading);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--foreground);
    line-height: 1.3;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    letter-spacing: -0.01em;
}

.cluster-faq dt:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.cluster-faq dd {
    margin: 0.6rem 0 0;
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 1rem;
}

/* ── Forward CTA to the planner (wealth green, AAA) ── */
.cluster-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2.5rem;
    padding: 0.95rem 2rem;
    border-radius: 100px;
    background: var(--wealth);
    color: var(--wealth-foreground);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-slow);
}

.cluster-cta:hover {
    background: var(--wealth-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* ── Related-pages nav ── */
.cluster-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.cluster-related h2 {
    font-family: var(--font-family-heading);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.cluster-related ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cluster-related li { margin-bottom: 0.6rem; }

.cluster-related a {
    color: var(--wealth);
    font-weight: 500;
    text-decoration: none;
    text-underline-offset: 2px;
}

.cluster-related a:hover {
    color: var(--wealth-hover);
    text-decoration: underline;
}

/* ── Comparison table caption (table itself reuses .benchmark-table from tools.css) ── */
.cluster-prose .benchmark-table caption {
    caption-side: top;
    text-align: left;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cluster-prose h2 { font-size: 1.25rem; }
    .cluster-faq dt { font-size: 1.1rem; }
}
