/* Embla Carousel Base Styles */
.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
}

.embla__slide {
  flex: 0 0 auto;
  min-width: 0;
}

/* Embla Carousel Navigation */
.embla__prev,
.embla__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #374151;
  font-size: 1rem;
}

.embla__prev:hover,
.embla__next:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.embla__prev:disabled,
.embla__next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.embla__prev {
  left: 16px;
}

.embla__next {
  right: 16px;
}
