.wd-list.wd-design-bordered li:not(:first-child):before {
	content: "";
	position: absolute;
	top: calc(var(--wd-row-gap) / 2 * -1);
	inset-inline: 0px;
	border-top: 1px solid var(--brdcolor-gray-300);
}

.wd-list.wd-type-ordered {
	counter-reset: item;
}

.wd-list.wd-type-ordered .wd-icon {
	font-weight: 600;
}

.wd-list.wd-type-ordered .wd-icon:before {
	content: counter(item) ".";
	counter-increment: item;
}

.wd-list.wd-type-unordered .wd-icon:before {
	font-size: .6em;
	content: "";
	font-family: "woodmart-font";
}

.wd-list.wd-type-unordered-2 .wd-icon:before {
	content: "";
	width: 1em;
	height: 1em;
	font-size: calc(var(--li-icon-s, 10px) / 2);
	background: currentColor;
	border-radius: 50%;
}

.wd-list.wd-shape-icon .wd-icon {
	background-color: var(--color-gray-200);
	width: var(--li-icon-s, 2em);
	height: var(--li-icon-s, 2em);
	font-size: calc(var(--li-icon-s, 2em) / 2);
}

.wd-list.wd-shape-icon .wd-icon :is(img,svg) {
	width: calc(var(--li-icon-s, 2em) / 2);
	height: calc(var(--li-icon-s, 2em) / 2);
	min-width: calc(var(--li-icon-s, 14px) / 2);
	object-fit: contain;
}

.wd-list.wd-style-rounded .wd-icon {
	border-radius: 50%;
}