/* ===========================================
   Images Styles — Voetbalwedden Pillar Page
   =========================================== */

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

/* Article Images */
.article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Figure containers */
[data-content] figure {
  margin: 2rem auto;
  max-width: 100%;
}

[data-content] figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-secondary, #6B6962);
  margin-top: 0.6rem;
  font-style: italic;
  line-height: 1.5;
}

/* Hero figure specificity override */
[data-content="hero"] figure {
  margin: 2rem auto 0;
}

[data-content="hero"] figcaption {
  color: rgba(250, 250, 248, 0.5);
}

/* Dark theme adjustments */
@media (prefers-color-scheme: dark) {
  .hero-image {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }

  .article-image {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

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

  [data-content] figcaption {
    color: var(--color-text-secondary, #9B978F);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-image {
    border-radius: 4px;
  }

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

  [data-content] figure {
    margin: 1.5rem auto;
  }
}
