.venue-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-banner__blur {
  position: absolute;
  inset: -20px;
  background-size: cover;
  filter: blur(28px);
  transform: scale(1.1);
}

.venue-banner__image {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .venue-banner {
    height: 320px;
  }
}
