.blaze-slider {
  position: relative;
}

.blaze-slider .slide img,
.blaze-slider .slide video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--image-border-radius);
}

.blaze-slider .slide .caption {
  margin-top: 0.5rem;
}

.blaze-slider .blaze-prev,
.blaze-slider .blaze-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  mix-blend-mode: difference;
}

.blaze-slider .blaze-prev {
  left: 0;
}

.blaze-slider .blaze-next {
  right: 0;
}

.blaze-slider .blaze-prev::after,
.blaze-slider .blaze-next::after {
  content: '';
  display: block;
  width: 1em;
  height: calc(1em * (9 / 14));
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33333 0C9.33333 0.432833 9.76092 1.07917 10.1937 1.62167C10.7502 2.32167 11.4152 2.93242 12.1777 3.3985C12.7493 3.74792 13.4423 4.08333 14 4.08333M14 4.08333C13.4423 4.08333 12.7487 4.41875 12.1777 4.76817C11.4152 5.23483 10.7502 5.84558 10.1937 6.54442C9.76092 7.0875 9.33333 7.735 9.33333 8.16667M14 4.08333H0' stroke='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33333 0C9.33333 0.432833 9.76092 1.07917 10.1937 1.62167C10.7502 2.32167 11.4152 2.93242 12.1777 3.3985C12.7493 3.74792 13.4423 4.08333 14 4.08333M14 4.08333C13.4423 4.08333 12.7487 4.41875 12.1777 4.76817C11.4152 5.23483 10.7502 5.84558 10.1937 6.54442C9.76092 7.0875 9.33333 7.735 9.33333 8.16667M14 4.08333H0' stroke='white'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.blaze-slider .blaze-prev,
.blaze-slider .blaze-next {
  font-size: 1rem;
}

.blaze-slider .blaze-prev::after {
  transform: rotate(180deg);
}

.blaze-slider .blaze-next::after {
  transform: none;
}

.blaze-slider.static .blaze-prev,
.blaze-slider.static .blaze-next,
.blaze-slider.static .blaze-pagination {
  display: none;
}

.blaze-slider .blaze-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: difference;
}

.blaze-slider .blaze-pagination button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: var(--regular-border-width) solid white;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  transition: background 0.2s;
}

.blaze-slider .blaze-pagination button.active {
  background: white;
}