.block__background-image {
  min-height: 360px;
  aspect-ratio: 1900/560;
  width: 100%;
  position: relative;
}
.block__background-image img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

@media (max-width: 480px) {
  .block__background-image {
    min-height: unset;
    aspect-ratio: 16/9;
  }
}