/* ========================================
   Images Styles - ApostaPro
   ======================================== */

/* Article Images */
.article-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Figure Container */
[data-content] figure {
  margin: 2rem 0;
}

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

[data-content] figcaption {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Hero Image */
.hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .article-image {
    border-radius: 4px;
  }
  
  [data-content] figure {
    margin: 1.5rem 0;
  }
  
  [data-content] figcaption {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}
