/*
 * Overrides loaded AFTER theme.css. Everything here is a deliberate departure
 * from what myteromsnus-dk shipped; theme.css itself is kept byte-identical to
 * the theme's style.css so the two never have to be diffed against each other.
 *
 * 1. Card title and excerpt.
 *    myteromsnus_post_card() emits .post-card-title and .post-card-excerpt as
 *    <span>s (they sit inside an <a>, where block children are not allowed),
 *    and theme.css styles them with vertical margins but never sets a display.
 *    Vertical margins do nothing on an inline box, so on the live WordPress
 *    site the title and the excerpt ran together as one paragraph on every
 *    archive card and every related card. Fixed here, agreed 2026-09-05.
 *    Delete this rule to get the original's rendering back.
 */
.post-card-title,
.post-card-excerpt { display: block; }
