/* Wrapper: zentriert, aber Inhalt linksbündig */
.pl-bullet-wrapper {
  text-align: center;     /* zentriert den Block */
}

.pl-bullet-list {
  display: inline-block;  /* macht die Liste zentrierbar */
  text-align: left;       /* aber Inhalt bleibt linksbündig */
  list-style: none;
  color: var(--font-color);
  font-size:1.6em;
  padding: 0;
  margin: 0;
  line-height: 1.5;
}

/* Einzelne Bullet-Zeilen */
.pl-bullet-list li {
  display: flex;
  align-items: center;
  margin: 4px 0;
}

/* Icon-Platzhalter */
.pl-bullet-icon {
  display: inline-block;
  width: 36px;            /* Platzhalterbreite */
  color: var(--font-color);
  font-size:1.6em;
  font-weight: bold;
  margin-right: 8px;
  text-align: center;
}
