/* ============================================================
   Process Section Widget — Scoped to .elementor-widget-process_section
   No global selectors, no conflicts.
   ============================================================ */

.elementor-widget-process_section .ps-wrapper {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	width: 100%;
	box-sizing: border-box;
}

/* ── Individual step ───────────────────────────────────────── */
.elementor-widget-process_section .ps-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	position: relative;
}

/* ── Icon area (holds circle + connector) ──────────────────── */
.elementor-widget-process_section .ps-icon-area {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: 20px;
}

/* ── Icon circle ───────────────────────────────────────────── */
.elementor-widget-process_section .ps-icon-wrap {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-color: #e8f5f4;
	border: 2px solid #b2dfdb;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.elementor-widget-process_section .ps-icon-wrap i {
	font-size: 32px;
	color: #4db6ac;
	line-height: 1;
}

.elementor-widget-process_section .ps-icon-wrap svg {
	width: 32px;
	height: 32px;
	fill: #4db6ac;
}

.elementor-widget-process_section .ps-icon-wrap svg path {
	fill: #4db6ac;
}

/* ── Step number badge ─────────────────────────────────────── */
.elementor-widget-process_section .ps-step-number {
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #4db6ac;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

/* ── Connector line ────────────────────────────────────────── */
.elementor-widget-process_section .ps-connector {
	position: absolute;
	top: 50%;
	left: calc(50% + 45px);       /* starts after the circle edge */
	right: calc(-50% + 45px);     /* ends before next circle */
	border-top: 2px dashed #b2dfdb;
	transform: translateY(-50%);
	z-index: 0;
}

/* ── Text block ────────────────────────────────────────────── */
.elementor-widget-process_section .ps-step-text {
	text-align: center;
	padding: 0 8px;
}

.elementor-widget-process_section .ps-step-title {
	font-size: 16px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 10px;
	padding: 0;
	line-height: 1.3;
}

.elementor-widget-process_section .ps-step-desc {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

/* ============================================================
   TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
	.elementor-widget-process_section .ps-wrapper {
		flex-wrap: wrap;
		gap: 40px 0;
	}

	.elementor-widget-process_section .ps-step {
		flex: 0 0 50%;
		max-width: 50%;
	}

	/* hide connector on tablet — layout breaks into 2-col */
	.elementor-widget-process_section .ps-connector {
		display: none;
	}
}

/* ============================================================
   MOBILE  (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
	.elementor-widget-process_section .ps-wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 36px;
	}

	.elementor-widget-process_section .ps-step {
		flex: none;
		max-width: 100%;
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
		text-align: left;
	}

	.elementor-widget-process_section .ps-icon-area {
		flex-shrink: 0;
		width: auto;
		margin-bottom: 0;
	}

	.elementor-widget-process_section .ps-step-text {
		text-align: left;
		padding: 0;
		flex: 1;
	}

	.elementor-widget-process_section .ps-icon-wrap {
		width: 64px;
		height: 64px;
	}

	/* icon sizes on mobile now controlled via Elementor panel */

	.elementor-widget-process_section .ps-connector {
		display: none;
	}

	.elementor-widget-process_section .ps-step-title {
		font-size: 15px;
	}

	.elementor-widget-process_section .ps-step-desc {
		font-size: 13px;
	}
}
