/* ============================================================
   FIGURE — editorial rhythm
   ============================================================ */

body.pz-clean-post .entry-content figure.pz-figure,
body.pz-clean-post .entry-content figure.wp-block-image {
  margin: 3.6rem auto 3rem;
  max-width: 880px;
  width: 100%;
  display: block;
}

body.pz-clean-post .entry-content figure.pz-figure img,
body.pz-clean-post .entry-content figure.wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: saturate(0.96) contrast(1.04);
  opacity: 0;
  animation: pz-fig-in 600ms var(--pz-ease-out, cubic-bezier(0.22, 1, 0.36, 1)) 80ms forwards;
}

body.pz-clean-post .entry-content figure.pz-figure img[loading="lazy"]:not(.pz-img-loaded) {
  /* lazy images: fade in on load (also covered by v50 marker) */
  opacity: 0;
}

@keyframes pz-fig-in {
  to { opacity: 1; }
}


/* ============================================================
   FIGCAPTION — editorial pattern
   Inter 0.84rem, soft mute, italic first phrase before the em-dash
   ============================================================ */

body.pz-clean-post .entry-content figure.pz-figure figcaption,
body.pz-clean-post .entry-content figure.wp-block-image figcaption,
body.pz-clean-post .pz-figure__caption {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  color: var(--pz-mute, #78716c) !important;
  text-align: center !important;
  margin-top: 0.95em !important;
  max-width: 56ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
  letter-spacing: 0.01em !important;
  font-style: normal !important;
  padding: 0 1rem;
}

/* Single hairline above the caption — connects image to text */
body.pz-clean-post .entry-content figure.pz-figure figcaption::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--pz-orange, #c2410c);
  opacity: 0.55;
  margin: 0 auto 0.85em;
}


/* ============================================================
   FULL-BLEED option for occasional cinematic moments
   Opt-in via .pz-figure--bleed
   ============================================================ */

body.pz-clean-post .entry-content figure.pz-figure--bleed {
  max-width: min(1200px, 96vw);
}


/* ============================================================
   First figure of an article sits a little tighter — landing
   it sooner after the lead helps the visual narrative open
   ============================================================ */

body.pz-clean-post .entry-content figure.pz-figure:first-of-type {
  margin-top: 2.8rem;
}


/* ============================================================
   Mobile — preserve the rhythm on smaller screens
   ============================================================ */

@media (max-width: 720px) {
  body.pz-clean-post .entry-content figure.pz-figure,
  body.pz-clean-post .entry-content figure.wp-block-image {
    margin: 2.4rem auto 2rem;
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  body.pz-clean-post .entry-content figure.pz-figure img,
  body.pz-clean-post .entry-content figure.wp-block-image img {
    animation: none !important;
    opacity: 1 !important;
  }
}