/* Container */
.wpt-container-9207 {
	font-family: inherit;
	background-color: #faf9f6;
	padding: 40px 15px; /* Reduced vertical padding */
	border-radius: 16px;
	box-sizing: border-box; /* Prevent overflow */
	overflow: hidden; /* Prevent horizontal scroll */
}

/* Header */
.wpt-header-9207 {
	text-align: center;
	margin-bottom: 30px; /* Reduced gap below header */
}

.wpt-eyebrow-9207 {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #a89c90;
	margin-bottom: 6px; /* Tighter gap */
	font-weight: 500;
}

.wpt-heading-9207 {
	font-size: 28px; /* Slightly scaled down */
	color: #2c2b29;
	margin: 0 0 10px 0; /* Tighter gap */
	font-weight: 600;
	line-height: 1.2;
}

.wpt-supporting-text-9207 {
	font-size: 15px;
	color: #7b7873;
	max-width: 580px;
	margin: 0 auto;
	line-height: 1.5;
}

/* Timeline Wrapper */
.wpt-timeline-wrapper-9207 {
	position: relative;
	max-width: 1000px; /* Reduced from 1100px for a more compact row */
	margin: 0 auto;
	width: 100%;
}

.wpt-timeline-9207 {
	display: flex;
	flex-direction: column;
	gap: 20px; /* Tighter vertical gap on mobile */
	position: relative;
}

/* Timeline Desktop (Horizontal) */
@media (min-width: 992px) {
	.wpt-timeline-9207 {
		flex-direction: row;
		justify-content: center; /* Center the items */
		align-items: stretch; /* Make sure all items have the same height container */
		gap: 12px; /* Tighter horizontal gap */
	}

	/* Connector Line */
	.wpt-timeline-9207::before {
		content: '';
		position: absolute;
		top: 20px; /* Centers with the 40px circle */
		left: 5%; /* Bring the line slightly in to prevent edge bleed */
		right: 5%;
		height: 1px;
		background-color: #eeebe3;
		z-index: 1;
	}
}

/* Single Step */
.wpt-step-9207 {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	position: relative;
	z-index: 2;
    height: 100%;
}

@media (min-width: 992px) {
	.wpt-step-9207 {
		flex-direction: column;
		align-items: center; /* Centers items horizontally */
		justify-content: flex-start; /* Aligns items to the exact top */
		flex: 1;
		max-width: 200px; /* Constrain width to keep it compact */
		gap: 15px; /* Tighter gap between circle and card */
	}
}

/* Indicator */
.wpt-step-indicator-9207 {
	flex-shrink: 0;
}

.wpt-step-number-9207 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border: 1px solid #eeebe3;
	border-radius: 50%;
	font-size: 15px; /* Slightly refined */
	font-weight: 500;
	color: #2c2b29;
	box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

/* Card */
.wpt-card-9207 {
	background-color: #ffffff;
	padding: 15px 12px; /* Reduced internal padding significantly */
	border-radius: 8px; /* Slightly tighter radius */
	box-shadow: 0 4px 12px rgba(0,0,0,0.03);
	text-align: right;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.wpt-card-9207:hover {
	transform: translateY(-2px); /* Subtler hover */
	box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

@media (min-width: 992px) {
	.wpt-card-9207 {
		text-align: center;
	}
}

.wpt-step-title-9207 {
	font-size: 15px; /* Slightly smaller title */
	color: #2c2b29;
	margin: 0 0 6px 0; /* Tighter gap below title */
	font-weight: 600;
	line-height: 1.2;
}

.wpt-step-text-9207 {
	font-size: 13px;
	color: #7b7873;
	margin: 0;
	line-height: 1.4; /* Tighter line height */
    flex-grow: 1;
}

/* Mobile Vertical Timeline Line */
@media (max-width: 991px) {
	.wpt-timeline-9207::before {
		content: '';
		position: absolute;
		top: 20px; /* Start slightly down */
		bottom: 20px; /* End slightly up */
		right: 19px;
		width: 1px;
		background-color: #eeebe3;
		z-index: 1;
	}
}

/* CTA Wrapper */
.wpt-cta-wrapper-9207 {
	text-align: center;
	margin-top: 30px; /* Brought much closer to cards */
}

.wpt-cta-btn-9207 {
	display: inline-block;
	background-color: #2c2b29;
	color: #ffffff;
	padding: 12px 32px; /* Lighter sizing */
	font-size: 14px; /* More elegant font size */
	font-weight: 400; /* Lighter font weight */
	letter-spacing: 0.5px;
	border-radius: 40px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.03); /* Softer shadow */
}

.wpt-cta-btn-9207:hover {
	background-color: #3f3d3b;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* Softer hover shadow */
	transform: translateY(-1px); /* Subtler lift */
}
