.carousel-wrapper {
  position: relative;  /* Aggiungi questa linea */
  display: flex;
  align-items: center;
}

.carousel {
  display: flex;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;  
  -ms-overflow-style: none;  
  background: #f3f3f3;
  padding: 18px;
  border-radius: 10px;
  min-width: 100%;
  flex-grow: 1;  /* Questa linea è stata aggiunta */
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel a {
  flex: 0 0 auto;
  width: 50%;
  white-space: normal;
  text-align: center;
}

.arrow {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    cursor: pointer;
    z-index: 1;
    padding: 5px;
    color: #fff;
    background: #002842;
    border-radius: 5px;
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}