.slide-wrapper {
  position: relative;
}

.main-card {
  max-width: 800px;
  width: 90vw;
  overflow: hidden;
  background-color: #222;
  z-index: 2;
}

.main-card img {
  width: 100%;
  object-fit: contain;
  background-color: #fff;
}

.blurred-preview {
  position: absolute;
  top: 5vh;
  height: 100vh;
  width: 60px;
  object-fit: cover;
  filter: blur(6px) brightness(0.8);
  z-index: 1;
  opacity: 0.7;
}

.start-preview {
  left: 0;
}

.end-preview {
  right: 0;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 2.5rem;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  z-index: 10;
}


/* Mobile & Tablet */
@media (max-width: 860px) {
  .main-card {
    width: 90%;
    box-shadow: none;
    z-index: 1;
  }

  .carousel-control-prev i,
.carousel-control-next i {
  font-size: 2.5rem;
  color: #000;
  z-index: 10;
}

  .blurred-preview {
    display: none; /* nascondi preview laterale su mobile */
  }
}


