ol.styled {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	column-gap: 25px;
	row-gap: 25px;
	padding: 0;
	margin: 0;
}

ol.styled li {
	counter-increment: step-counter;
	margin: 0;
	display: flex;
	gap: 15px;
}

ol.styled li::before {
	content: counter(step-counter);
	font-size: 2.5rem;
	background-color: var(--main-purple-light);
	color: var(--best-white);
	font-weight: bold;
	padding: 0.5rem 1rem;
	height: 4.5rem;
}