/**
 * Process Steps — Frame 45
 */

.elementor-column > .elementor-element-populated:has(.elementor-widget-agency-process-steps) {
	padding: 0;
}

.e-con:has(.elementor-widget-agency-process-steps) {
	--padding-top: 0px;
	--padding-right: 0px;
	--padding-bottom: 0px;
	--padding-left: 0px;
}

.aew-process-steps {
	--aew-process-steps-bg: var(--aew-color-gray, #e1deda);
	--aew-process-steps-image-height: 240px;
	--aew-process-steps-image-radius: 20px;
	position: relative;
	isolation: isolate;
	width: 100%;
	box-sizing: border-box;
}

.aew-process-steps::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	transform: translateX(-50%);
	background-color: var(--aew-process-steps-bg);
	z-index: -1;
	pointer-events: none;
}

.aew-process-steps__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.aew-process-steps__list {
	display: flex;
	flex-direction: column;
	/* gap: owned by cards_gap control */
	width: 100%;
}

.aew-process-steps__card {
	display: flex;
	flex-direction: column;
	/* gap: owned by card_inner_gap control */
	/* padding: owned by card_padding control */
	background-color: var(--aew-process-steps-card-bg, #f8f5f1);
	/* border-radius: owned by card_radius control */
	box-sizing: border-box;
}

.aew-process-steps__media {
	width: 100%;
	line-height: 0;
	overflow: hidden;
	border-radius: var(--aew-process-steps-image-radius);
}

.aew-process-steps__media img {
	display: block;
	width: 100%;
	height: var(--aew-process-steps-image-height);
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
}

.aew-process-steps__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}

.aew-process-steps__step-col {
	flex-shrink: 0;
}

.aew-process-steps__step {
	display: block;
	margin: 0;
	font-family: var(--aew-font-heading, 'DM Serif Display', serif);
	/* font-size: owned by step_label_typography control */
	font-weight: 700;
	line-height: 1.15;
	color: var(--aew-process-steps-text, #252f37);
}

.aew-process-steps__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
	min-width: 0;
}

.aew-process-steps__title {
	margin: 0;
	font-family: var(--aew-font-heading, 'DM Serif Display', serif);
	/* font-size, font-weight: owned by step_title_typography control */
	line-height: 1.15;
	color: var(--aew-process-steps-text, #252f37);
	width: 100%;
}

.aew-process-steps__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.aew-process-steps__text {
	margin: 0;
	font-family: var(--aew-font-body, Poppins, sans-serif);
	/* font-size: owned by step_description_typography control */
	font-weight: 400;
	line-height: 1.5;
	color: var(--aew-process-steps-text, #252f37);
}

@media (min-width: 768px) {
	.aew-process-steps {
		--aew-process-steps-image-height: 400px;
		--aew-process-steps-image-radius: 24px;
	}
}

@media (min-width: 1024px) {
	.aew-process-steps__content {
		flex-direction: row;
		align-items: flex-start;
		gap: 80px;
	}

	.aew-process-steps__copy {
		flex: 1;
	}
}
