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

.exegypt-timeline::before {
	content: '';
	position: absolute;
	top: 28px;
	bottom: 28px;
	left: 20px;
	width: 2px;
	background: linear-gradient(180deg, #C99638 0%, rgba(201, 150, 56, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.exegypt-timeline__item {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 32px;
	margin-bottom: 32px;
}

.exegypt-timeline__item:last-child {
	margin-bottom: 0;
}

.exegypt-timeline__marker {
	position: relative;
	z-index: 1;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #C99638;
	border-radius: 50%;
}

.exegypt-timeline__dot {
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
}

.exegypt-timeline__card {
	flex: 1 1 auto;
	min-width: 0;
	padding: 24px;
	background: #fff;
	border-radius: 2px;
	outline: 1px solid rgba(0, 45, 114, 0.08);
	outline-offset: -1px;
	box-shadow: 0 2px 12px rgba(0, 24, 68, 0.04);
}

.exegypt-timeline__header {
	display: flex;
	align-items: center;
	gap: 16px;
}

.exegypt-timeline__year {
	flex-shrink: 0;
	color: #C99638;
	font-family: Montserrat, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

.exegypt-timeline__divider {
	flex-shrink: 0;
	width: 32px;
	height: 1px;
	background: rgba(201, 150, 56, 0.3);
}

.exegypt-timeline__title {
	color: #001844;
	font-family: Montserrat, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.exegypt-timeline__text {
	margin: 0;
	padding-top: 12px;
	color: #475467;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.57;
}

@media (max-width: 768px) {
	.exegypt-timeline::before {
		left: 16px;
	}

	.exegypt-timeline__item {
		gap: 20px;
		margin-bottom: 24px;
	}

	.exegypt-timeline__marker {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
	}

	.exegypt-timeline__dot {
		width: 10px;
		height: 10px;
	}

	.exegypt-timeline__card {
		padding: 18px;
	}

	.exegypt-timeline__year {
		font-size: 20px;
	}

	.exegypt-timeline__title {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.exegypt-timeline::before {
		left: 12px;
	}

	.exegypt-timeline__item {
		gap: 14px;
	}

	.exegypt-timeline__marker {
		flex-basis: 26px;
		width: 26px;
		height: 26px;
	}

	.exegypt-timeline__dot {
		width: 8px;
		height: 8px;
	}

	.exegypt-timeline__card {
		padding: 14px;
	}

	.exegypt-timeline__header {
		flex-wrap: wrap;
		row-gap: 4px;
	}

	.exegypt-timeline__divider {
		display: none;
	}

	.exegypt-timeline__year {
		font-size: 18px;
	}

	.exegypt-timeline__title {
		font-size: 14px;
		line-height: 1.4;
	}

	.exegypt-timeline__text {
		font-size: 13px;
	}
}
