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

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

figure img.article-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

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

figcaption {
  text-align: center;
  font-size: 0.8125rem;
  color: #8a8a9a;
  margin-top: 0.75em;
  line-height: 1.5;
  font-style: italic;
}

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

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

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