/* =========================================================
   Image styles — Blitzsatz
   ========================================================= */

/* Hero image (full-width inside hero layout) */
.hero figure {
  margin: 1.5rem 0 0 0;
  padding: 0;
}
.hero .hero-image,
.hero figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.08);
}

/* In-article figures */
.article-figure {
  margin: 2rem 0;
  padding: 0;
}
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.06);
}
.article-figure figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
  text-align: left;
  padding: 0 0.25rem;
}

/* Responsive */
@media (max-width: 640px) {
  .article-figure {
    margin: 1.5rem 0;
  }
  .article-figure figcaption {
    font-size: 0.8125rem;
  }
}
