.hero-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

@media (prefers-color-scheme: dark) {
  .hero-image img {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
}

.hero-image figcaption {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #666666);
  text-align: center;
  margin-top: 1rem;
}

.article-image {
  margin: 2.5rem 0;
  text-align: center;
}

.article-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
  .article-image img {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }
}

.article-image figcaption {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #666666);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .hero-image img,
  .article-image img {
    border-radius: 4px;
  }
  
  .article-image {
    margin: 1.5rem 0;
  }
}
