/* === Images Styles === */

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

/* Article body images */
.article-image {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

/* Figure wrapper */
[data-content] figure {
  margin: 2.5rem auto;
  max-width: 100%;
  text-align: center;
}

/* Hero figure — no extra margin */
[data-content="hero"] figure {
  margin: 0 auto;
}

/* Figcaption */
[data-content] figcaption {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: #555555;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.4;
}

@media (prefers-color-scheme: dark) {
  [data-content] figcaption {
    color: #A0A0A0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .article-image {
    border-radius: 2px;
  }

  [data-content] figure {
    margin: 2rem auto;
  }
}
