.image-wrapper {
  overflow: hidden;
}
.zoom-hover {
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.zoom-hover:hover {
  transform: scale(1.08);
  z-index: 2;
}
/*
.bw-img {
  filter: grayscale(100%);
  transition: filter 0.4s cubic-bezier(.4,0,.2,1);
}
*/
.zoom-hover:hover .bw-img {
  filter: none;
}

@media (min-width: 1024px) {
  .image-wrapper img {
    height: 600px;
  }
}

/* 

@media (max-width: 1023px) {
  .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .carousel-slide {
    flex: 0 0 80%;
    scroll-snap-align: center;
    position: relative;
    min-width: 80%;
    max-width: 80%;
    box-sizing: border-box;
  }
  .carousel-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 1rem;
  }
  .carousel-slide span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
    text-shadow: 0 2px 8px #000;
  }
}*/
