/* Home process flow ------------------------------------------------------- */
.pas-home .pas-process {
	--pas-process-gap: clamp(1rem, 2vw, 1.5rem);
	position: relative;
}

.pas-home .pas-process-line {
	background: #51d4d0;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 23px;
	z-index: 1;
}

.pas-home .pas-process-list {
	display: grid;
	gap: var(--pas-process-gap);
	grid-auto-rows: 1fr;
	grid-template-columns: repeat(4, 1fr);
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
}

.pas-home .pas-process-item {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-top: 72px;
	position: relative;
}

.pas-home .pas-process-node {
	align-items: center;
	background: var(--pas-teal);
	border: 4px solid var(--pas-navy-deep);
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(81, 212, 208, .58), 0 8px 20px rgba(0, 0, 0, .24);
	color: var(--pas-navy-deep);
	display: flex;
	font-size: .72rem;
	font-weight: 850;
	height: 48px;
	justify-content: center;
	left: 50%;
	line-height: 1;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 48px;
	z-index: 3;
}

.pas-home .pas-process-card {
	align-items: center;
	background: var(--pas-navy-mid);
	border: 1px solid rgba(81, 212, 208, .38);
	border-radius: var(--pas-radius);
	box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	height: 100%;
	padding: 1.75rem 1.5rem;
	text-align: center;
}

.pas-home .pas-process-card .pas-icon-wrap {
	flex: 0 0 50px;
	height: 50px;
	margin: 0 0 1rem;
	width: 50px;
}

.pas-home .pas-process-card h3 {
	align-items: flex-start;
	color: var(--pas-white);
	display: flex;
	font-size: 1.05rem;
	justify-content: center;
	line-height: 1.3;
	margin: 0 0 .55rem;
	min-height: 2.6em;
	width: 100%;
}

.pas-home .pas-process-card p {
	color: rgba(255, 255, 255, .78);
	font-size: .88rem;
	line-height: 1.6;
	margin: 0;
	width: 100%;
}

@media (max-width: 1024px) and (min-width: 641px) {
	.pas-home .pas-process-line { display: none; }
	.pas-home .pas-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.pas-home .pas-process { padding-left: 0; }
	.pas-home .pas-process-line {
		bottom: 24px;
		height: auto;
		left: 23px;
		right: auto;
		top: 24px;
		width: 2px;
	}
	.pas-home .pas-process-list { gap: .875rem; grid-template-columns: 1fr; }
	.pas-home .pas-process-item { min-height: 0; padding: 0 0 0 72px; }
	.pas-home .pas-process-node { left: 0; top: 24px; transform: none; }
	.pas-home .pas-process-card { align-items: flex-start; min-height: 0; padding: 1.5rem; text-align: left; }
	.pas-home .pas-process-card h3 { justify-content: flex-start; min-height: 0; }
}
