/* Images Styles for UK Online Gambling Sites */

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

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

/* Article Images */
.article-image {
  margin: 2.5rem 0;
  text-align: center;

}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease;
}

.article-image img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.article-image figcaption {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #4A4A4A);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

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