.embla {
  background-color: #965c57;
  overflow: hidden;
  padding-top: 170px;
  margin: 0;
  position: relative;

  @media screen and (max-width: 960px) {
    padding-top: 100px;
  }
}

.embla__viewport {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.embla__controls {
  max-width: 1200px;
  margin: auto;
  height: 100%;
}

.embla__container {
  display: flex;
}
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;

  @media screen and (max-width: 650px) {
    flex: 0 0 100%;
  }
}

.embla__slide__number {
  font-size: 0;
  line-height: 0;
}

.embla__slide__number img {
  object-fit: cover;
  object-position: 30% center;
  width: 100%;
  min-height: 300px;
}

.embla__prev,
.embla__next {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -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: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    height: 40px;
    width: 40px;
  }
}

.embla__prev {
  position: absolute;
  left: 10px;
  top: 50%;
  stroke: blue;
  transform: translateY(-50%);
}

.embla__next {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);

  img {
    transform: scaleX(-1);
    transform-origin: center;
    display: block; /* avoids extra inline spacing */
  }
}
