/**
 * WYSIWYG List Bullet Point Alignment Fix
 * 
 * This overrides any hardcoded bullet positioning with flexible em-based positioning
 * Works in conjunction with JavaScript that removes <p> tags within list items
 */

.wyg ul {
  margin: 2rem 0 !important;
  padding-left: 0 !important;
  line-height: 1.5rem !important;
}

.wyg ul li {
  list-style: none !important;
  padding: 0.5em 0.5em 0.5em 15px !important;
  position: relative !important;
}

.wyg ul li:before {
  background: #dc0b63 !important;
  width: 5px !important;
  height: 5px !important;
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 1em !important;  /* Flexible positioning - scales with font size */
  left: 0px !important;
}

/* Remove blue marker if it somehow appears */
.wyg ul li::marker {
  display: none !important;
  color: transparent !important;
}



