.block-liste ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.block-liste li {
  margin-bottom: var(--space, 12px);
}

.item-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Alignement */
.liste-align-left { text-align: left; }
.liste-align-center { text-align: center; }
.liste-align-right { text-align: right; }

/* Puce par défaut */
.bullet {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #666;
}

/* Numérotation */
.badge-num {
  font-weight: bold;
  background: #eee;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Checklist */
.item-check .badge-icon {
  color: green;
  font-weight: bold;
}
.item-cross .badge-icon {
  color: red;
  font-weight: bold;
}

/* Icônes */
.badge-icon {
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Texte */
.item-text {
  font-weight: 600;
}

.item-sub {
  opacity: .7;
  margin-top: 4px;
  font-size: .9rem;
}

/* Timeline */
.liste-timeline .item-line {
  position: relative;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  margin-top: 6px;
}
