/* images-styles.css — Article image styles */

[data-content] figure {
  margin: 2em 0;
  border-radius: 8px;
  overflow: hidden;
}

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

[data-content] figure figcaption {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 0.65em;
  padding: 0 0.5rem;
  line-height: 1.5;
}

[data-content="hero"] figure {
  margin: 0 auto;
  max-width: var(--content-width);
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

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