/* === Article Images === */
figure {
  margin: 2em 0;
}

figure .article-image {
  display: block;
  width: 100%;

  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

figure .hero-image {
  display: block;
  width: 100%;

  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #9a9aa6;
  margin-top: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}

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

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

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