/* =============================================
   Images Styles - Tennis Vorhersagen
   ============================================= */

/* Hero Figure */
.hero-figure {
  margin: 2rem 0 0 0;
  max-width: 100%;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-figure figcaption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 0.75rem;
  padding: 0 1rem;
}

/* Article Figures */
.article-figure {
  margin: 2rem auto;
  max-width: 100%;
}

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

.article-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.article-figure figcaption {
  font-size: 13px;
  color: var(--color-text-secondary, #6C757D);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
  .hero-image {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  
  .article-image {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }
  
  .article-image:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  
  .article-figure figcaption {
    color: var(--color-text-secondary, #ADB5BD);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-figure {
    margin: 1.5rem 0 0 0;
  }
  
  .hero-image {
    border-radius: 6px;
  }
  
  .article-figure {
    margin: 1.5rem auto;
  }
  
  .article-image {
    border-radius: 4px;
  }
  
  .hero-figure figcaption,
  .article-figure figcaption {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-figure {
    margin: 1rem 0 0 0;
  }
  
  .hero-image,
  .article-image {
    border-radius: 4px;
  }
  
  .article-figure {
    margin: 1rem auto;
  }
}
