/* ================================================
   Process Timeline Widget
   ================================================ */

.ptl-wrapper {
	background: #000000;
	width: 100%;
	overflow: hidden;
}

.ptl-timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Vertical center line */
.ptl-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #333333;
	transform: translateX(-50%);
	z-index: 0;
}

/* ====== Row ====== */
.ptl-row {
	display: flex;
	align-items: flex-start;
	position: relative;
	margin-bottom: 0;
	padding: 30px 0;
}

.ptl-row--last {
	padding-bottom: 0;
}

/* Card column = takes up half minus center gap */
.ptl-card-col {
	flex: 0 0 calc(50% - 45px);
	max-width: calc(50% - 45px);
}

/* Center column (icon) */
.ptl-center-col {
	flex: 0 0 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	z-index: 2;
	gap: 6px;
}

/* ====== Positioning: Cards alternate left / right ====== */

/* ODD steps (0, 2, 4…): card on RIGHT */
.ptl-row--right {
	flex-direction: row-reverse;
}

.ptl-row--right .ptl-card {
	text-align: left;
}

/* EVEN steps (1, 3, 5…): card on LEFT */
.ptl-row--left {
	flex-direction: row;
}

.ptl-row--left .ptl-card {
	text-align: right;
}

/* ====== Step label ====== */
.ptl-step-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #888888;
	text-transform: uppercase;
	white-space: nowrap;
}

/* ====== Icon circle ====== */
.ptl-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1.5px solid #555555;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.ptl-icon i {
	font-size: 20px;
	color: #ffffff;
	line-height: 1;
}

.ptl-icon svg {
	width: 20px;
	height: 20px;
	fill: #ffffff;
}

/* ====== Card ====== */
.ptl-card {
	background: #0a0a0a;
	border: 1px solid #333333;
	border-radius: 12px;
	padding: 28px;
	position: relative;
}

.ptl-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px;
	line-height: 1.3;
}

.ptl-card-desc {
	font-size: 0.925rem;
	color: #aaaaaa;
	line-height: 1.65;
	margin: 0 0 18px;
}

/* ====== Badge ====== */
.ptl-badge {
	display: inline-block;
	padding: 8px 18px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
	background: #1a1a1a;
	border: 1px solid #444444;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.25s ease;
}

a.ptl-badge:hover {
	background: #222222;
	border-color: #666666;
	color: #ffffff;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 768px) {
	.ptl-timeline {
		padding: 0 10px;
	}

	/* Stack: icon on top, card below, full width */
	.ptl-line {
		left: 30px;
		transform: none;
	}

	.ptl-row,
	.ptl-row--right,
	.ptl-row--left {
		flex-direction: column !important;
		align-items: flex-start;
		padding-left: 60px;
		padding-right: 0;
	}

	.ptl-center-col {
		position: absolute;
		left: 0;
		top: 30px;
		flex: none;
		width: 60px;
		align-items: center;
	}

	.ptl-card-col {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}

	.ptl-row--left .ptl-card,
	.ptl-row--right .ptl-card {
		text-align: left;
	}

	.ptl-step-label {
		display: none;
	}

	.ptl-icon {
		width: 44px;
		height: 44px;
	}

	.ptl-icon i {
		font-size: 17px;
	}

	.ptl-icon svg {
		width: 17px;
		height: 17px;
	}

	.ptl-card {
		padding: 22px;
	}

	.ptl-card-title {
		font-size: 1.05rem;
	}

	.ptl-card-desc {
		font-size: 0.875rem;
	}
}

/* Small mobile */
@media (max-width: 480px) {

	.ptl-row,
	.ptl-row--right,
	.ptl-row--left {
		padding-left: 52px;
	}

	.ptl-line {
		left: 24px;
	}

	.ptl-center-col {
		width: 32px;
	}

	.ptl-icon {
		width: 40px;
		height: 40px;
	}

	.ptl-icon i {
		font-size: 15px;
	}

	.ptl-icon svg {
		width: 15px;
		height: 15px;
	}

	.ptl-card {
		padding: 18px;
	}

	.ptl-card-title {
		font-size: 1rem;
	}

	.ptl-badge {
		padding: 6px 14px;
		font-size: 0.7rem;
	}
}