/* article-hero.css | b-ramos.de
   Compact hero image — limits height and disables parallax scrolling. */

.gh-article-image {
  max-height: 55vh;
  overflow: hidden;
}

.gh-article-image img {
  width: 100%;
  height: 100%;
  max-height: 55vh;
  object-fit: cover;
  object-position: center;
  position: static !important;
  transform: none !important;
  will-change: auto !important;
}
