/* Richard handoff CTAs — archive pages → the application at app.richiest.com.
   Two variants: .richard-cta (full banner) and .richard-fund-cta (inline,
   used on ETF and guide pages under the fund writeup). */

.richard-cta {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius-lg);
    padding: var(--s6);
    margin: var(--s7) 0;
}

.richard-cta-kicker {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--border-mid);
    margin-bottom: var(--s3);
}

.richard-cta-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.15;
    margin: 0 0 var(--s3);
}

.richard-cta-sub {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--paper-mid);
    max-width: 52ch;
    margin: 0 0 var(--s5);
}

.richard-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s3);
    align-items: center;
}

.richard-cta-price {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--border-mid);
}

.richard-cta-note {
    margin: var(--s4) 0 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--border-mid);
    max-width: 60ch;
}

/* ── Inline fund handoff ────────────────────────────────────────────────── */

.richard-fund-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--s4);
    border: 1px solid var(--border);
    border-left: 3px solid var(--ink);
    background: var(--paper-warm);
    border-radius: var(--radius);
    padding: var(--s4) var(--s5);
    /* Inserted before the footer on most archive pages, i.e. outside the page's
       own content container — so it centres itself rather than going full-bleed. */
    max-width: var(--wide-width, 960px);
    margin: var(--s6) auto;
}

/* Already inside a constrained column: don't double up the centring. */
main .richard-fund-cta,
article .richard-fund-cta,
.section-inner .richard-fund-cta {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.richard-fund-cta-text {
    flex: 1 1 22rem;
}

.richard-fund-cta-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
    margin-bottom: var(--s1);
}

.richard-fund-cta-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--ink-muted);
}

.richard-fund-cta-link {
    display: inline-block;
    padding: var(--s3) var(--s5);
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}

.richard-fund-cta-link:hover {
    opacity: 0.85;
}

@media (max-width: 640px) {
    .richard-cta {
        padding: var(--s5);
    }

    .richard-cta-title {
        font-size: 1.375rem;
    }

    .richard-fund-cta-link {
        width: 100%;
        text-align: center;
    }
}

/* ── Homepage: who Richard is for ──────────────────────────────────────── */

.who-list {
    list-style: none;
    padding: 0;
    margin: var(--s5) 0;
    max-width: var(--content-width);
}

.who-list li {
    position: relative;
    padding-left: var(--s5);
    margin-bottom: var(--s3);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-light);
}

.who-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 1px;
    background: var(--border-mid);
}
