﻿.mooton-process-steps {
	background: #ffffff;
	margin: 0;
	overflow: hidden;
	padding: 32px 24px;
}

.mooton-process-steps * {
	box-sizing: border-box;
}

.mooton-process-steps__inner {
	margin: 0 auto;
	max-width: 1240px;
}

.mooton-process-steps__eyebrow {
	color: #d75179;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	margin: 0 0 14px;
	margin-left: 0 !important; /* override WP constrained-layout centering */
	text-transform: uppercase;
}

.mooton-process-steps__title {
	color: #d75179;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.12;
	margin: 0;
	margin-left: 0 !important; /* override WP constrained-layout centering */
	max-width: 760px;
}

.mooton-process-steps__desc {
	color: #485648;
	font-size: 18px;
	line-height: 1.7;
	margin: 14px 0 42px;
	margin-left: 0 !important; /* override WP constrained-layout centering */
	max-width: 760px;
}

.mooton-process-steps__list {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.mooton-process-steps__item {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
	padding: 0 8px;
	position: relative;
	z-index: 1;
}

.mooton-process-steps__item::after {
	background: linear-gradient(90deg, rgb(10, 147, 227) 0%, rgb(60, 147, 227) 100%);
	content: "";
	height: 3px;
	left: 130px;
	position: absolute;
	right: -71px;
	top: 31px;
	z-index: 0;
}

.mooton-process-steps__item:last-child::after {
	display: none;
}

.mooton-process-steps__node {
	align-items: center;
	background: rgb(10, 147, 227);
	border: 7px solid #e7f1e3;
	border-radius: 999px;
	box-shadow: 0 12px 24px rgba(45, 125, 79, .2);
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	height: 66px;
	justify-content: center;
	letter-spacing: .5px;
	width: 66px;
}

.mooton-process-steps__content {
	background: #f5f8f3;
	border: 1px solid #e2eadf;
	border-radius: 4px;
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	min-height: 170px;
	padding: 18px 16px 20px;
	transition: box-shadow .2s ease, transform .2s ease;
	width: 100%;
}

.mooton-process-steps__item:hover .mooton-process-steps__content {
	box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
	transform: translateY(-4px);
}

.mooton-process-steps__step-title {
	color: #18251d;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.18;
}

.mooton-process-steps__copy {
	color: #4f5b51;
	font-size: 15px;
	line-height: 1.58;
}

.mooton-strength-panel {
	padding-bottom: 56px !important;
	padding-top: 56px !important;
}

.mooton-strength-panel > h2,
.mooton-strength-panel > .wp-block-heading {
	margin-bottom: 42px !important;
}

.mooton-strength-panel .wp-block-columns {
	align-items: stretch;
}

.mooton-strength-panel .wp-block-column {
	display: flex;
}

.mooton-strength-panel .wp-block-column > .wp-block-group {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 176px;
	padding: 30px 28px !important;
	width: 100%;
}

@media (max-width: 1180px) {
	.mooton-process-steps__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 34px;
	}

	.mooton-process-steps__item::after {
		display: none;
	}

	.mooton-process-steps__item {
		padding: 0;
	}
}

@media (max-width: 699px) {
	.mooton-process-steps {
		padding: 32px 20px;
	}

	.mooton-process-steps__title {
		font-size: 32px;
	}

	.mooton-process-steps__desc {
		font-size: 16px;
		margin-bottom: 28px;
	}

	.mooton-process-steps__list {
		display: flex;
		flex-direction: column;
		gap: 22px;
	}

	.mooton-process-steps__item {
		align-items: flex-start;
		flex-direction: row;
		gap: 16px;
	}

	.mooton-process-steps__node {
		flex: 0 0 58px;
		height: 58px;
		width: 58px;
	}

	.mooton-process-steps__content {
		min-height: 0;
	}
}

