/* Styled list with custom bullet markers. */

.wm-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--wm-color-text-secondary);
  line-height: 1.6;
}

.wm-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.wm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: var(--wm-color-text-faint);
  border-radius: 50%;
}
