/* mobile-hero-image-fix.css — hero obraz na mobile bez kadrowania */
@media (max-width: 767px){
  .hero .hero-art{
    aspect-ratio: auto !important;   /* wyłącz wymuszony stosunek boków */
    height: auto !important;
    overflow: hidden;
    border-radius: 18px;
  }
  .hero .hero-art picture,
  .hero .hero-art img{
    display: block;
    width: 100%;
  }
  .hero .hero-art img{
    height: auto !important;
    object-fit: contain !important;  /* pokaż całe zdjęcie */
    object-position: center top;
  }
}