/* ========================================
   IMAGES-STYLES.CSS — GolpeSeco
   Image styling for pillar article
   ======================================== */

/* Content images */
[data-content] figure {
  margin-top: 2em;
  margin-bottom: 2em;
}

[data-content] figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

[data-content] figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #4a5568;
  margin-top: 0.75rem;
  line-height: 1.5;
  font-family: 'Source Sans 3', sans-serif;
}

/* Hero image overrides */
[data-content="hero"] figure {
  margin-top: 1.5em;
  margin-bottom: 0;
}

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

/* Responsive */
@media (max-width: 768px) {
  [data-content] figure {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }

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

  [data-content] figcaption {
    font-size: 0.8rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
