.wp-block-list {
	isolation: isolate;
	list-style: none;

	li {
		position: relative;
	}

	li::before {
		content: "";
		display: block;
		width: 2em;
		height: 2em;
		border-radius: 50%;
		background-color: hsl(from var(--bullet-color, rgba(192, 166, 142, 0.4)) h s l / 0.3);
		position: absolute;
		left: -1em;
		top: -0.15lh;
		z-index: -1;
	}
}

.wp-block-list.is-ciel li::before {
	background-color: rgba(179, 206, 213, 0.5);
}

.wp-block-list.columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0, min(100%, 25ch)));
	column-gap: var(--wp--preset--spacing--4-xl, 2.5rem);
	row-gap: var(--wp--preset--spacing--l, 2.5rem);

	li {
		margin-top: 0;
	}
}
