.block-editor-block-canvas .carousel-button {
	display: none !important;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 100%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  opacity: 0.6;
  &:hover{
	  opacity: 1;
  }
}

.carousel-button.left {
  left: 0px;
}

.carousel-button.right {
  right: 0px;
}

/* Dots */
.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #333;
}

/* Responsive */
@media (min-width: 768px) {
  .carousel-item {
	flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-item {
	flex: 0 0 33.3333%;
  }
}
