/* ===================== ARTICLE IMAGES ===================== */

figure {
  margin: 2rem auto;
  max-width: 100%;
}

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

figure img.hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.1);
}

figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #4a4a6a;
  margin-top: 0.625rem;
  font-style: italic;
  line-height: 1.5;
}

/* ===================== RESPONSIVE ===================== */

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

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

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