/* images-styles.css — OddZona image layout rules */

/* ─── Hero image ─────────────────────────────────────────── */
.hero-figure {
  margin: 1.75rem 0 0;
  line-height: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ─── Article figures ────────────────────────────────────── */
.article-figure {
  margin: 2rem 0;
  line-height: 0;
}

.article-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.article-figure figcaption {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: var(--text-small, 0.875rem);
  line-height: 1.5;
  color: var(--color-text-secondary, #6b6560);
}

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

  .article-img {
    border-radius: 6px;
  }

  .article-figure {
    margin: 1.5rem 0;
  }
}
