/**
 * Five-step process flow band — replaces liucheng.jpg diagram.
 */

/* Homepage legacy — full-width black band (title + steps + CTA) */
.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1676011612636 .sitewidget-hd h2,
.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1676011612636 .graphicNewTitle,
.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1676011612636 .sitewidget-hd *,
.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1676011612636 .sitewidget-bd,
.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1676011612636 .sitewidget-bd * {
	color: #fff !important;
}

.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1684920715865 .jcproto-process-flow {
	background-color: transparent;
	background-image: none;
	overflow: visible;
	padding-left: 0;
	padding-right: 0;
}

.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1684920715865 .jcproto-process-flow::before {
	display: none;
}

.jcproto-page--home .jcproto-legacy-body-wrap #outerContainer_1684920715865 .jcproto-process-flow a {
	color: inherit;
	text-decoration: none;
}

/* Legacy grid: expand the column that holds the flow to full content width */
.jcproto-page--home .jcproto-legacy-body-wrap [class*="col-md-"]:has(> .jcproto-process-flow-align),
.jcproto-page--home .jcproto-legacy-body-wrap [class*="col-md-"]:has(> .jcproto-process-flow),
.jcproto-page--home .jcproto-legacy-body-wrap .sitewidget-pictureNew:has(.jcproto-process-flow) {
	flex: 0 0 100%;
	max-width: 100%;
	width: 100%;
}

.jcproto-page--home .jcproto-legacy-body-wrap .sitewidget-pictureNew:has(.jcproto-process-flow) .picture-resize-wrap,
.jcproto-page--home .jcproto-legacy-body-wrap .sitewidget-pictureNew:has(.jcproto-process-flow) .picture-wrap,
.jcproto-page--home .jcproto-legacy-body-wrap .sitewidget-pictureNew:has(.jcproto-process-flow) .imgBox,
.jcproto-page--home .jcproto-legacy-body-wrap .sitewidget-pictureNew:has(.jcproto-process-flow) .sitewidget-bd {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
}

.jcproto-process-flow-align {
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.jcproto-process-flow-align .jcproto-process-flow {
	width: 100%;
	max-width: 100%;
}

.jcproto-process-flow {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-sizing: border-box;
	padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.5rem);
	border-radius: 4px;
	overflow: hidden;
	background-color: #1a1a1a;
	background-image: var(--jcproto-process-flow-bg, none);
	background-size: cover;
	background-position: center;
}

.jcproto-process-flow::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	z-index: 0;
}

.jcproto-process-flow__steps {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jcproto-process-flow__step {
	flex: 1 1 0;
	min-width: 0;
	padding: 0 0.5rem;
	color: #fff;
}

.jcproto-process-flow__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 0.75rem;
	color: #fff;
}

.jcproto-process-flow__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.jcproto-process-flow__title {
	margin: 0 0 0.5rem;
	font-family: var(--jcproto-font-display, "Montserrat", Calibri, sans-serif);
	font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
}

.jcproto-process-flow__number {
	margin-right: 0.2em;
	font-weight: 700;
	color: #fff;
}

.jcproto-process-flow__text {
	margin: 0;
	font-family: var(--jcproto-font, Calibri, "Segoe UI", Arial, sans-serif);
	font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
	font-weight: 400;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.jcproto-process-flow__arrow {
	flex: 0 0 clamp(1rem, 2vw, 1.5rem);
	align-self: center;
	padding-top: 0.5rem;
	list-style: none;
}

.jcproto-process-flow__arrow-line {
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	border-top: 1px dashed rgba(255, 255, 255, 0.55);
}

.jcproto-process-flow__arrow-line::after {
	content: "";
	position: absolute;
	right: -1px;
	top: -4px;
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid rgba(255, 255, 255, 0.55);
}

.jcproto-home .jcproto-process .jcproto-process-flow {
	margin-top: 0.25rem;
}

@media (min-width: 1200px) {
	.jcproto-process-flow__steps {
		flex-wrap: nowrap;
	}

	.jcproto-process-flow__step {
		flex: 1 1 0;
		min-width: 0;
	}
}

@media (max-width: 1199px) {
	.jcproto-process-flow__steps {
		flex-wrap: wrap;
		row-gap: 1.5rem;
	}

	.jcproto-process-flow__step {
		flex: 1 1 calc(33.333% - 1rem);
		min-width: 200px;
	}

	.jcproto-process-flow__arrow {
		display: none;
	}
}

@media (max-width: 767px) {
	.jcproto-process-flow__step {
		flex: 1 1 100%;
		padding: 0;
	}

	.jcproto-process-flow__icon {
		width: 40px;
		height: 40px;
	}
}
