/* ========================================
   Article Images — FogadóTárca
   ======================================== */

figure {
  margin: 2rem 0;
  padding: 0;
}

figure img.hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

figure img.article-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

figure img.article-image:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

figcaption {
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.65rem;
  line-height: 1.5;
  padding: 0 1rem;
}

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

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

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

@media (max-width: 480px) {
  figure img.hero-image {
    border-radius: 4px;
  }
}
