.embla-wrapper {
  width: 100%; /* Your container size */
  margin: 0 auto;
  position: relative;
}

/* 2. Full-bleed viewport that ignores container width */
.embla {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.embla__viewport {
  width: 100%;
}

/* 3. Slides should match the width of the centered wrapper */
.embla__container {
  display: flex;
}

.embla__slide {
  flex: 0 0 auto;
  width: var(--slide-width);
  padding: 0 12px;
  box-sizing: content-box;
}

.embla__buttons {
  padding: 24px 0;
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
}

.embla__buttons button {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #0177cb;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.embla__buttons button:hover {
  background-color: #3c5472;
}

.embla__button--next {
  transform: scaleX(-1);
}

.embla__pagination {
  color: #0177cb;
  font-size: 24px;
  line-height: 32px; /* 133.333% */
}

.embla__current_slide {
	width: 15px;
	display: inline-block;
	text-align: right;
}