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

[data-content] figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

[data-content] figure img.article-image {
  display: block;
  width: 100%;

  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-content] figure figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #4a4a4a;
  margin-top: 0.5rem;
  line-height: 1.5;
  font-family: 'Source Sans 3', sans-serif;
}

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

/* Hero figure — constrain to content width */
[data-content="hero"] figure {
  max-width: var(--content-width, 740px);
  margin: 0 auto;
}

[data-content="hero"] figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  [data-content] figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  [data-content] figure img.article-image {
    border-radius: 3px;
  }

  [data-content] figure figcaption {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}
