/* ========================================
   Images — Article Figures
   ======================================== */
figure {
  margin: 2rem 0;
  padding: 0;
}

figure img.article-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  figure {
    margin: 1.5rem 0;
  }

  figure img.article-image {
    border-radius: 2px;
  }
}
