/* Mooodi Process Steps */
.mooodi-steps{
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}
.mooodi-steps__item{
	min-width: 0;
}
.mooodi-steps__line{
	position: relative;
	height: 2px;
	background-color: rgba(255,255,255,0.25);
	margin-bottom: 28px;
	overflow: hidden;
}
.mooodi-steps__fill{
	position: absolute;
	inset: 0 auto 0 0;
	width: 0%;
	background-color: #C9F66F;
	transition-property: width;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 900ms; /* wordt overschreven vanuit JS */
}
.mooodi-steps__item.is-filled .mooodi-steps__fill{
	width: 100%;
}
.mooodi-steps__number{
	display: block;
	font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
	font-size: 18px;
	font-weight: 700;
	color: #C9F66F;
	margin-bottom: 12px;
}
.mooodi-steps__title{
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: #F7F4EC;
}
.mooodi-steps__text{
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: #C7CDC1;
}

/* Mobiel stapelen */
@media (max-width: 767px){
	.mooodi-steps--stack{
		grid-auto-flow: row;
		grid-auto-columns: unset;
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce){
	.mooodi-steps__fill{ transition: none !important; width: 100%; }
}
