/* ─── Author bio (.hzo-author-bio) ─────────────────────────────────────
   Horizontal byline card for post footers — a modifier on .hzo-card
   (avatar left, name/meta/bio right; the card's own gap spaces them).
   Wraps to a stack when the card gets narrow via flex-wrap — intrinsic,
   no container query needed (§1.24 note at the top of this batch).
   Markup: blocks/author-bio.html. */
.hzo-author-bio {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}
.hzo-author-bio__body {
    flex: 1 1 240px;   /* below ~240px of free space the text wraps under the avatar */
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.hzo-author-bio__body > p { margin: 0; }
