/* Statement block — one turn of dialogue (site/snippets/blocks/statement.php) */

.block-statement {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: var(--space-xs);
    align-items: baseline;
}
/* consecutive turns read as one exchange: tighter than the body's block rhythm */
.block-statement + .block-statement {
    margin-top: var(--space-xs);
}
/* per-speaker: indent this speaker's turns to set them off in the dialogue */
.block-statement--indent {
    margin-left: var(--space-xl);
}
.block-statement__speaker {
    font-variation-settings: "wght" 60;
    font-size: var(--fs-meta);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-note);
}
.block-statement__text {
    text-align: justify;
}
