/* Images Styles - Article Images */

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

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

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

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

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

@media (max-width: 480px) {
  [data-content] figure {
    margin: 1.25rem 0;
  }
}
