/* Shared slider controls for all Digifox modules */
.digifox-slider-prev,
.digifox-slider-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: var(--digifox-slider-arrow-color, var(--review-arrow-color, var(--team-arrow-color, #000000)));
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  pointer-events: auto;
}

.digifox-slider-prev:focus,
.digifox-slider-prev:hover,
.digifox-slider-next:focus,
.digifox-slider-next:hover {
  background: var(--digifox-slider-arrow-color, var(--review-arrow-color, var(--team-arrow-color, #000000)));
}

.digifox-slider-prev::before,
.digifox-slider-next::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  opacity: 1;
  transform: scaleY(0.65);
  transform-origin: center;
}

.digifox-slider-prev::before {
  margin-right: 1px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 32'><path d='M11 4 L5 16 L11 28' stroke='black' stroke-width='6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 32'><path d='M11 4 L5 16 L11 28' stroke='black' stroke-width='6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

.digifox-slider-next::before {
  margin-left: 1px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 32'><path d='M5 4 L11 16 L5 28' stroke='black' stroke-width='6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 32'><path d='M5 4 L11 16 L5 28' stroke='black' stroke-width='6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

.digifox-slider-navs {
  position: relative;
  height: 30px;
  margin-top: 20px;
  z-index: 5;
}

.digifox-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.digifox-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--digifox-slider-arrow-color, var(--review-arrow-color, var(--team-arrow-color, #000000)));
  opacity: 0.35;
  cursor: pointer;
  padding: 0;
}

.digifox-slider-dot.is-active {
  background: var(--digifox-slider-arrow-color, var(--review-arrow-color, var(--team-arrow-color, #000000)));
  opacity: 1;
}
