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

.timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--gradient);
	border-radius: 2px;
}

.timeline-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 40px;
	position: relative;
}

.timeline-item:nth-child(odd) {
	flex-direction: row;
	padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
	padding-left: calc(50% + 30px);
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 30px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--color-purple);
	z-index: 2;
}

.timeline-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-card);
	width: 100%;
}

.timeline-card .badge-gradient {
	font-size: 0.85rem;
	padding: 6px 18px;
	border-radius: 50px;
	font-weight: 700;
}

.timeline-card h4 {
	color: var(--color-text);
	font-weight: 600;
	margin-top: 12px;
	font-size: 1rem;
}

.timeline-card .placeholder-img {
	margin-top: 12px;
	border-radius: 10px;
}

/* Align container width with vesak-theme */
#timeline .container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-img-row {
    display: flex;
}

.timeline-img {
    width: 50%;
    height: auto;
    margin-bottom: 40px;
}