:root {
  --bullet-list-color: currentColor;
  --bullet-list-indent: 1rem;
  --bullet-list-marker: '\2022';
  --bullet-list-marker-color: var(--color-orange);
  --bullet-list-marker-font: var(--font-family-indie-flower);
  --bullet-list-marker-size: 1.2em;
  --bullet-list-marker-space: 0.5rem;
  --bullet-list-spacing: 1rem;
}

.bullet-list {
  color: var(--bullet-list-color);
  line-height: var(--line-height-body);
  list-style-type: var(--bullet-list-marker);
  padding-inline-start: calc(var(--bullet-list-indent) + 2rem);

  & & {
    margin-block-start: var(--bullet-list-spacing);
  }
}

.bullet-list--unordered {
  --bullet-list-marker: '\2022';
}

.bullet-list--checked {
  --bullet-list-marker: '\2713';
}

.bullet-list--ordered {
  --bullet-list-marker: decimal;
}

.bullet-list__item {
  padding-inline-start: var(--bullet-list-marker-space);
  position: relative;

  & + & {
    margin-block-start: var(--bullet-list-spacing);
  }

  &::marker {
    color: var(--bullet-list-marker-color);
    font-family: var(--bullet-list-marker-font);
    font-size: var(--bullet-list-marker-size);
    line-height: 0;
  }
}
