.business-banner {
  height: clamp(150px, 24vw, 380px);
  overflow: hidden;
  background: #9d0000;
}

.business-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 580px) {
  .business-banner {
    height: auto;
  }

  .business-banner img {
    height: auto;
    min-height: 120px;
    object-fit: cover;
  }
}
