/* ============================================================
   Image styles — content figures and captions
   ============================================================ */

.content-figure {
  margin: 2.25rem 0;
  padding: 0;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface, #ffffff);
}

.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border: 0;
}

.content-figure figcaption {
  padding: 0.85rem 1.1rem 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted, #525252);
  border-top: 1px solid var(--border, #e5e5e5);
  background: var(--surface-alt, #f4f4f3);
}

.hero-figure {
  margin: 1.75rem 0 0;
}

.hero-figure img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

@media (max-width: 720px) {
  .content-figure { margin: 1.5rem 0; border-radius: 8px; }
  .content-figure figcaption { padding: 0.7rem 0.9rem 0.85rem; font-size: 0.85rem; }
  .hero-figure img { border-radius: 10px; }
}

@media (max-width: 420px) {
  .content-figure { margin: 1.25rem 0; }
}
