.pi-8169-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: relative;
}

.pi-8169-step {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	position: relative;
}

/* Connector Line */
.pi-8169-step:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 25px; /* Adjust based on icon box size / 2 */
	top: 50px;  /* Adjust based on icon box size */
	bottom: -2rem; /* gap between steps */
	width: 2px;
	background-color: #e5e5e5;
	z-index: 0;
	transform: translateX(-50%);
}

.pi-8169-icon-wrap {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.pi-8169-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pi-8169-icon i {
	font-size: 20px;
	color: #333;
}

.pi-8169-icon svg {
	width: 20px;
	height: 20px;
	fill: #333;
}

.pi-8169-content {
	flex-grow: 1;
	padding-top: 0.5rem;
}

.pi-8169-title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.pi-8169-desc {
	margin: 0;
	color: #666;
}

/* Responsive adjustments */
@media (min-width: 768px) {
	.pi-8169-container {
		flex-direction: row;
		justify-content: space-between;
		gap: 0;
	}
	
	.pi-8169-step {
		flex-direction: column;
		align-items: center;
		text-align: center;
		flex: 1;
		padding: 0 1rem;
		gap: 1rem;
	}
	
	.pi-8169-step:not(:last-child)::before {
		left: 50%;
		top: 25px; /* icon box size / 2 */
		right: -50%;
		bottom: auto;
		width: auto;
		height: 2px;
		transform: none;
	}
	
	.pi-8169-content {
		padding-top: 0;
	}
}
