/* What To Expect — Process Steps Widget */

.wte-wrapper {
	display: flex;
	align-items: stretch;
	align-content: stretch;
	--wte-col-gap: 40px;
	--wte-hover-lift: 6px;
	gap: var(--wte-col-gap);
	width: 100%;
	box-sizing: border-box;
}

.wte-wrapper * {
	box-sizing: border-box;
}

/* ---------- Left Panel ---------- */
.wte-left-panel {
	position: relative;
	width: 46%;
	overflow: hidden;
	border-radius: 24px;
	flex-shrink: 0;
	background: #ece6da;
	align-self: stretch;
}

.wte-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.4s ease;
}

.wte-main-image.wte-fading {
	opacity: 0;
}

.wte-badge {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	border-radius: 16px;
	background-color: rgba(196, 178, 158, 0.88);
	color: #fff;
}

.wte-badge-title {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 4px 0;
}

.wte-badge-subtitle {
	font-size: 14px;
	opacity: 0.92;
	margin: 0;
}

.wte-badge-icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
}

.wte-badge-icon svg {
	width: 1em;
	height: 1em;
}

/* ---------- Right Panel ---------- */
.wte-right-panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	flex: 1 1 auto;
}

.wte-step {
	display: block;
	text-decoration: none;
	color: inherit;
}

.wte-step-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 22px 28px;
	border-radius: 20px;
	background-color: #ffffff;
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.wte-hover-anim .wte-step:hover .wte-step-inner {
	transform: translateY(calc(-1 * var(--wte-hover-lift)));
}

.wte-icon-box {
	flex-shrink: 0;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background-color: #e7ddce;
	color: #3a3128;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wte-hover-anim .wte-step:hover .wte-icon-box {
	transform: scale(1.06);
}

.wte-icon-box i {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.wte-icon-box svg {
	display: block;
	margin: 0 auto;
}

.wte-step-text {
	flex: 1;
}

.wte-step-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: #2b2620;
	margin: 0;
	transition: color 0.25s ease;
}

.wte-step-subtext {
	font-size: 14px;
	line-height: 1.4;
	color: #6f6659;
	margin: 4px 0 0 0;
	transition: color 0.25s ease;
}

/* ---------- Connector Arrows ---------- */
.wte-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a99c85;
	font-size: 18px;
	line-height: 1;
}

.wte-arrow svg {
	width: 1em;
	height: 1em;
}

/* ---------- Entrance Animations ---------- */
.wte-entrance-anim .wte-step {
	opacity: 0;
}

.wte-entrance-anim .wte-step.wte-in-view {
	animation-name: wteFadeUp;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.wte-entrance-anim.wte-anim-fade-up .wte-step.wte-in-view {
	animation-name: wteFadeUp;
}

.wte-entrance-anim.wte-anim-fade-in .wte-step.wte-in-view {
	animation-name: wteFadeIn;
}

.wte-entrance-anim.wte-anim-zoom-in .wte-step.wte-in-view {
	animation-name: wteZoomIn;
}

.wte-entrance-anim.wte-anim-slide-left .wte-step.wte-in-view {
	animation-name: wteSlideLeft;
}

@keyframes wteFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes wteFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes wteZoomIn {
	from { opacity: 0; transform: scale(0.9); }
	to   { opacity: 1; transform: scale(1); }
}

@keyframes wteSlideLeft {
	from { opacity: 0; transform: translateX(40px); }
	to   { opacity: 1; transform: translateX(0); }
}

.wte-entrance-anim .wte-left-panel {
	opacity: 0;
	animation-name: wteFadeIn;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
	animation-timing-function: ease;
}

/* ---------- No Left Panel Layout ---------- */
.wte-no-left-panel .wte-right-panel {
	width: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.wte-step-title {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.wte-wrapper {
		flex-direction: column;
	}

	.wte-left-panel,
	.wte-right-panel {
		width: 100% !important;
	}

	.wte-left-panel {
		height: 260px;
		align-self: auto;
	}

	.wte-step-inner {
		padding: 16px 18px;
		gap: 14px;
	}

	.wte-icon-box {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.wte-step-title {
		font-size: 16px;
	}
}
