/* Page-scoped styles for the transform-pdf post.
   Loaded only on this page via the `css:` front-matter key, so bare element
   selectors are safe here. */

/* --- Figure cards -------------------------------------------------------
   Same treatment as the rejection-sampling post: the figures are Plots.jl SVG
   exports with a baked-in white background and black axes, so we present them
   as deliberate light panels rather than rewriting the SVGs. These plots are
   authored square at 500px, so the card is capped there (plus the img's own
   padding and border) to keep them at native size. */

figure {
  margin: 2rem auto;
  max-width: calc(500px + 1.5rem + 2px);
}

figure img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
}

figure figcaption {
  margin-top: 0.6rem;
  font-size: 0.9em;
  line-height: 1.45;
  opacity: 0.8;
}
