/* Images Styles for Champions League Quoten */

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

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

/* Article Images */
.article-image {
  margin: 2rem auto;
  max-width: 100%;
  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: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@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 8px 24px rgba(0, 0, 0, 0.4);
  }
}

.article-image figcaption {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-top: 12px;
  font-style: normal;
  line-height: 1.5;
}

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

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