/* =========================================
   Images Styles — Serie A en vivo
   ========================================= */

/* --- Hero image --- */
[data-content="hero"] figure {
  margin: 2rem auto 0;
  max-width: 100%;
}

[data-content="hero"] .hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 1200 / 630;
}

[data-content="hero"] figcaption {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* --- Article images --- */
figure {
  margin: 2em auto;
  max-width: 100%;
}

.article-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 800 / 450;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

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

figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #5A6370;
  margin-top: 0.6em;
  line-height: 1.4;
}

/* --- Dark mode adjustments --- */
@media (prefers-color-scheme: dark) {
  .article-image {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }

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

  figcaption {
    color: #8A929C;
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  figure {
    margin: 1.5em auto;
  }

  .article-image {
    border-radius: 4px;
  }

  [data-content="hero"] .hero-image {
    border-radius: 4px;
  }
}
