.embla {
  --slide-spacing: 0px;
  --slide-size: 100%;
  --detail-medium-contrast: rgb(25, 25, 25);
  --text-high-contrast-rgb-value: 49, 49, 49;
}
.embla__viewport {
  overflow: hidden;
}
.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}
.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
  text-shadow: 1px 1px 5px black;
}
.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.embla__button {
  touch-action: manipulation;
  cursor: pointer;
  border: none;
  outline: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.embla__slide a[href] {
  text-shadow: none;
}

.embla__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  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: 1px solid #fff;
  padding: 0;
  margin: 0;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.embla__dot--selected {
  background-color: #fff;
}
.embla:hover .embla__button {
  opacity: 1;
}
@media (max-width: 768px) {
  .embla__button {
    opacity: 1;
  }
}
