.theme-carousel-indicator__dot {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.theme-carousel-indicator__dot-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.theme-carousel-indicator__dot-item {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  outline: none;
}
.theme-carousel-indicator__dot-item::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 6px;
  height: 6px;
  content: "";
  background-color: rgba(var(--color-text), 0.2);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  transform: translate(-50%, -50%);
}
.theme-carousel-indicator__dot-item.is-active::before {
  width: 10px;
  height: 10px;
  background-color: rgb(var(--color-text));
}
.theme-carousel-indicator__dot-item:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .theme-carousel-indicator__dot-item::before {
    transition: none;
  }
}
