/* ============================================
   Images - Article & Hero
   ============================================ */
figure {
  margin: 2rem 0;
}

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

figure figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.6rem;
  line-height: 1.5;
  font-family: 'Source Serif 4', Georgia, serif;
}

[data-content="hero"] figure {
  margin: 0 auto 1.5rem;
  max-width: 740px;
}

[data-content="hero"] figure img {
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

  [data-content="hero"] figure {
    margin-left: -1rem;
    margin-right: -1rem;
    max-width: none;
  }

  [data-content="hero"] figure img {
    border-radius: 0;
  }

  figure figcaption {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}
