/* =========================================
   Images — Article & Hero
   ========================================= */

figure {
  margin: 2rem 0;
  padding: 0;
}

figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #a0907a;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.article-image {
  border-radius: 6px;
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-content="hero"] figure {
  margin: 0 auto;
}

[data-content="hero"] figure img {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

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

  .article-image {
    border-radius: 4px;
  }
}
