/* Fix figure width — Terminal theme sets width: fit-content on figure,
   which uses the image's intrinsic width (1024px) while the image itself
   is constrained by the content column. This causes the figcaption with
   its accent background to overflow past the image. */
.post-content figure {
    width: 100%;
}

.post-content figure img {
    width: 100%;
    height: auto;
}
