/* ============================================
   Article Images — GolEdge
   ============================================ */

/* Hero figure — full width within hero section */
[data-content="hero"] figure {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-width);
  padding: 0 1.5rem;
}

[data-content="hero"] figure img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

/* Article figures inside data-content sections */
[data-content] figure {
  margin: 2em 0;
  padding: 0;
}

[data-content] figure img.article-image {
  display: block;
  width: 100%;
  max-width: 740px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

[data-content] figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.6rem;
  line-height: 1.5;
  font-style: italic;
}

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

  [data-content="hero"] figure {
    padding: 0 1rem;
  }
}
