/* images-styles.css — OddsPorto */

/* ─── Base figure ─────────────────────────────────────────────── */
[data-content] figure {
  margin: 2rem 0;
  padding: 0;
  width: 100%;
}

[data-content] figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

[data-content] figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted, #8b949e);
  text-align: center;
  font-style: italic;
}

/* ─── Hero image ──────────────────────────────────────────────── */
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin: 1.25rem 0;
}

[data-content="hero"] figure {
  margin: 1.25rem 0;
}

[data-content="hero"] figure figcaption {
  display: none;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  [data-content] figure {
    margin: 1.5rem 0;
  }

  .hero-image {
    max-height: 260px;
    border-radius: 6px;
  }

  [data-content] figure figcaption {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    max-height: 200px;
  }
}
