/* ---- IMAGE STYLES ---- */

/* Hero image */
.hero-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Article images */
.article-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Figure containers inside sections */
[data-content] figure {
  margin: 2em auto;
  max-width: 100%;
}

[data-content] figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-content] figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: #5c5c5c;
  margin-top: 0.6em;
  line-height: 1.5;
  font-style: italic;
}

/* Hero figure override - no figcaption, larger shadow */
[data-content="hero"] figure {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

/* Responsive */
@media (max-width: 768px) {
  [data-content] figure {
    margin: 1.5em auto;
  }

  [data-content] figure img {
    border-radius: 4px;
  }

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