/* Center images and figures inside post/page bodies (Melanie, 2026-09-04).
   The theme gives img display:block and figure display:table; auto side
   margins center both. Inline-styled images (display:inline) are unaffected. */
.post-content img { margin-left: auto; margin-right: auto; }
.post-content figure { margin-left: auto; margin-right: auto; }
.post-content figure figcaption { text-align: center; }

/* Collapsed demos on the Temporal page. The newest demo stays open above these. */
details.demo { margin: 18px 0; border-top: 1px solid rgba(128, 128, 128, 0.35); padding-top: 6px; }
details.demo > summary { cursor: pointer; font-weight: 700; font-size: 1.15em; padding: 6px 0; list-style: none; }
details.demo > summary::before { content: "\25B8\00A0"; display: inline-block; width: 1.1em; }
details.demo[open] > summary::before { content: "\25BE\00A0"; }
details.demo > summary::-webkit-details-marker { display: none; }
