/* =============================================
   IMAGES — PALAPOINT
   ============================================= */

figure {
  margin: 2rem auto;
  max-width: 100%;
}

figure img.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

figure img.article-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid #2a2a3a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #8888a0;
  margin-top: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 768px) {
  figure {
    margin: 1.5rem auto;
  }

  figure img.article-image {
    border-radius: 4px;
  }

  figcaption {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
}
