/* ── ARTICLE IMAGES ── */
[data-content] figure {
  margin: 2em auto;
  max-width: 100%;
}

[data-content] figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-content] figcaption {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  margin-top: 0.6em;
  line-height: 1.5;
  padding: 0 0.5rem;
}

[data-content="hero"] figure {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  [data-content] figure {
    margin: 1.5em auto;
  }

  [data-content] figure img {
    border-radius: 4px;
  }

  [data-content] figcaption {
    font-size: 0.78rem;
  }
}
