.embla {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  --slide-height: 19rem;
  --slide-spacing: 1rem;
  --slide-size: 100%;
}
.embla__viewport {
  overflow: hidden;
  width: 100%;
}
.embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  /* margin-left: -10px; */
}

/* Ensure interactive elements remain clickable in carousel */
.embla__slide a,
.embla__slide button,
.embla__slide .btn {
  user-select: auto;
  -webkit-touch-callout: auto;
  -khtml-user-select: auto;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}
.embla__slide {
  position: relative;
  min-width: 100%;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .embla__slide {
    min-width: 50%;
    margin-right: 12px;
  }
}
@media (min-width: 1024px) {
  .embla__slide {
    min-width: 33.33%;
  }
}
.embla__slide__inner {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.embla__slide__number {
  box-shadow: inset 0 0 0 0.2rem rgb(234, 234, 234);;
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slide-height);
  user-select: none;
}
.embla__controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 12px;
}
.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.embla__dot {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #E5E7EB;
  transition: background-color 0.2s;
}
.embla__dot--selected {
  background-color: #707070;
}
.embla__prev,
.embla__next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.embla__prev:hover,
.embla__next:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .embla__prev,
  .embla__next {
    width: 36px;
    height: 36px;
  }
  .embla__prev svg,
  .embla__next svg {
    width: 20px;
    height: 20px;
  }
}