.vt-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: vtCount;
}

.vt-feature-list__item {
  counter-increment: vtCount;
  position: relative;
  padding-left: 64px;
  margin-bottom: 28px;
}

.vt-feature-list__item::before {
  content: counter(vtCount);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.list-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.list-line h4 { margin: 0; }

.vt-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.vt-badge--gray { background: #efefef; color: #333; }
.vt-badge--black { background: #111; color: #fff; }

.list-content p { margin: 0; }
