/* ── Quote ─────────────────────────────────────────────────────
   A statement, not an alert box. Every Markdown `> quote` renders
   through this automatically (bare `blockquote`, no class needed);
   `.quote` exists for a hand-authored pull-quote outside Markdown
   content. Large type, one accent rule, generous whitespace -
   no fill, no border-radius, no icon.
*/
/* Interactive blue, not brand orange (Issue 45 revision): a quote can
   appear inside any long-form content type (Project, Offering, Legal,
   About, not only Articles), so its accent bar stays a neutral
   structural marker rather than implying one content family's
   identity - see the decision doc's "Why blockquote didn't get a
   content-family accent". */
blockquote,
.quote {
    margin: var(--space-6) 0;
    padding-left: var(--space-5);
    border-left: 3px solid var(--color-interactive);
}

blockquote p,
.quote p {
    font-family: var(--type-quote-family);
    font-size: var(--type-quote-size);
    font-weight: var(--type-quote-weight);
    line-height: var(--type-quote-line-height);
    color: var(--color-heading);
}

blockquote p + p,
.quote p + p {
    margin-top: var(--space-3);
}

blockquote footer,
blockquote cite,
.quote footer,
.quote cite {
    display: block;
    margin-top: var(--space-3);
    font-size: var(--type-small-size);
    font-style: normal;
    color: var(--color-text-muted);
}
