/* images-styles.css — Zona Mundial image presentation */

/* Section images — inline editorial style */
section > img,
[data-content] > img {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: 1.5rem auto 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  section > img,
  [data-content] > img {
    margin: 1rem auto 1.5rem;
    border-radius: 4px;
  }
}
