/* ============================================
   Images Styles — Baseball Live Wetten
   ============================================ */

/* Hero image (inside hero figure) */
[data-content="hero"] figure {
  max-width: 960px;
  margin: 0 auto;
}

[data-content="hero"] figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

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

/* Article body images */
[data-content]:not([data-content="hero"]) figure {
  margin: 2.5rem 0;
  max-width: 100%;
}

[data-content]:not([data-content="hero"]) figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

[data-content]:not([data-content="hero"]) figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: 0.6rem;
  line-height: 1.4;
}

@media (prefers-color-scheme: dark) {
  [data-content]:not([data-content="hero"]) figure img {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 900px) {
  [data-content]:not([data-content="hero"]) figure {
    margin: 2rem 0;
  }

  [data-content]:not([data-content="hero"]) figure img {
    border-radius: 4px;
  }
}
