/* ===========================================
   Images Styles - Cricket Live Wetten
   =========================================== */

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

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

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

.article-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.article-image img:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

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

.article-image figcaption {
  font-size: 0.875rem;
  color: var(--color-text-muted, #6B6B6B);
  margin-top: 0.75rem;
  font-style: italic;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-color-scheme: dark) {
  .article-image figcaption {
    color: var(--color-text-muted, #A0A0A0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .article-image {
    margin: 2rem 0;
  }
  
  .article-image img {
    border-radius: 4px;
  }
  
  .article-image figcaption {
    font-size: 0.8125rem;
    padding: 0 1rem;
  }
}

/* Print styles */
@media print {
  .hero-image,
  .article-image img {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .article-image img:hover {
    transform: none;
  }
}
