/* ── Images Styles ── */

[data-content] figure {
  margin: 2rem 0;
}

[data-content] figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

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

[data-content="hero"] figure {
  margin: 1.5rem auto 0;
  max-width: var(--content-width);
}

[data-content="hero"] figure img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

  [data-content] figure img {
    border-radius: 4px;
  }

  [data-content="hero"] figure img {
    border-radius: 6px;
  }
}
