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

.embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}

.embla__slide__inner {
  overflow: hidden;
  height: 100%;
}

/* Navigation Buttons */
/* .embla__prev,
.embla__next {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

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

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

/* Dots Navigation */
.embla__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.embla__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(156, 163, 175, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.embla__dot:hover {
  background: rgba(156, 163, 175, 0.8);
}

.embla__dot--selected {
  background: #2563eb;
}

/* Responsive adjustments */
/* @media (max-width: 768px) {
  .embla__prev,
  .embla__next {
    width: 36px;
    height: 36px;
  }

  .embla__dot {
    width: 10px;
    height: 10px;
  }
} */
