.gellc-timeline {
	position: relative;
	overflow: hidden;
}

.gellc-timeline::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0.5rem;
	transform: translateX(-50%);
	width: 0.125rem;
	background: var(--e-global-color-e6381af, #c2a5d8);
}

.gellc-timeline__year-block {
	display: grid;
	grid-template-columns: 1rem minmax(0, 1fr);
	column-gap: 2rem;
	align-items: flex-start;
	position: relative;
	margin-bottom: 2rem;
}

.gellc-timeline__year-col {
	position: relative;
}

.gellc-timeline__year {
	position: relative;
	margin: 0;
}

.gellc-timeline__year::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -5.0625rem;
	transform: translateY(-50%);
	width: 1rem;
	height: 1rem;
	border-radius: 999px;
	background: var(--e-global-color-primary, #844cb1);
	z-index: 1;
}

.gellc-timeline__card {
	background: #ffffff;
	border-radius: 2rem;
	padding: 2rem;
	box-sizing: border-box;
	border: 1px solid var(--e-global-color-dfeba86, #c9cedb);
}

.gellc-timeline__text {
	margin-top: 1.5rem;
}

.gellc-timeline__text ol,
.gellc-timeline__text ul {
	padding-left: 1rem;
}

.gellc-timeline__year-block:last-child .gellc-timeline__year::after {
	content: '';
	position: absolute;
	left: -4.6875rem;
	top: 66%;
	transform: translateY(0);
	width: 0.25rem;
	height: 125rem;
	background: #ffffff;
	z-index: 2;
}

@media (max-width: 768px) {
	.gellc-timeline__card {
		padding: 24px 16px 16px 16px;
	}

	.gellc-timeline__year-block {
		column-gap: 16px;
	}

	.gellc-timeline__year::before {
		left: -49px;
	}

	.gellc-timeline__year-block:last-child .gellc-timeline__year::after {
		left: -43px;
		top: 70%;
	}
}

