/* === Images Styles — CuotaVerde === */

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

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

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

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

[data-content] figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-top: 0.5rem;
  font-family: 'Source Serif 4', Georgia, serif;
  line-height: 1.5;
}

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

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

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