.about-timeline {
	background-color: #FFFFFF;
	border-radius: 40px;
	position: relative;
	z-index: 1;
	padding-top: 50px;
	padding-bottom: 50px;
}

.about-timeline__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
}

.about-timeline__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 800px;
	max-width: 100%;
}

.about-timeline__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
}

.about-timeline__eyebrow-icon-img {
	width: 32px;
	height: 32px;
	display: block;
}

.about-timeline__eyebrow-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #000000;
}

.about-timeline__heading {
	max-width: 700px;
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #000000;
}

.about-timeline__description {
	margin: 0;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
}

/* Track */
.about-timeline__track {
	position: relative;
	width: 100%;
}

.about-timeline__line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	background-color: #F7F7F6;
	overflow: hidden;
}

.about-timeline__line-progress {
	width: 100%;
	height: 0;
	background-color: #B8B8B8;
}

/* Item */
.about-timeline__item {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.about-timeline__item + .about-timeline__item {
	margin-top: 16px;
}

/* The line is the track's first child, so item 1 = nth-child(2) (even) — card on the right. */
.about-timeline__item:nth-child(even) {
	flex-direction: row-reverse;
}

.about-timeline__card {
	position: relative;
	flex-grow: 1;
	flex-basis: 50%;
	max-width: 50%;
	border-radius: 16px;
	background-color: #F7F7F6;
}

.about-timeline__card-inner {
	position: relative;
	z-index: 1;
	border-radius: 16px;
	overflow: hidden;
	padding: 20px;
	background-color: #F7F7F6;
}

.about-timeline__card-arrow {
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	background-color: #F7F7F6;
}

/* even = card right of the line → arrow left; odd = card left → arrow right. */
.about-timeline__item:nth-child(even) .about-timeline__card-arrow {
	left: 0;
	margin-left: -10px;
	transform: translateY(-50%) rotate(45deg);
}

.about-timeline__item:nth-child(odd) .about-timeline__card-arrow {
	right: 0;
	margin-right: -10px;
	transform: translateY(-50%) rotate(45deg);
}

.about-timeline__card-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #031527;
}

.about-timeline__card-desc {
	margin-top: 10px;
}

.about-timeline__card-desc p {
	margin: 0;
}

/* Point */
.about-timeline__point {
	flex-shrink: 0;
	flex-grow: 0;
	position: relative;
	z-index: 1;
	margin: 0 20px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #0072FF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-timeline__point-icon {
	display: flex;
}

.about-timeline__point-icon svg {
	width: 12px;
	height: 12px;
	fill: #FFFFFF;
}

.about-timeline__meta {
	flex-grow: 1;
	flex-basis: 50%;
	max-width: 50%;
}

/* Last card is blue. */
.about-timeline__item:last-child .about-timeline__card-inner,
.about-timeline__item:last-child .about-timeline__card-arrow {
	background-color: #0072FF;
}

.about-timeline__item:last-child .about-timeline__card-title,
.about-timeline__item:last-child .about-timeline__card-desc {
	color: #FFFFFF;
}

/* Reveal animation */
.about-timeline__item .about-timeline__card {
	opacity: 0;
	transform: translate3d(0, 20px, 0);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-timeline__item.is--show .about-timeline__card {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	.about-timeline__item .about-timeline__card {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (max-width: 1024px) {
	.about-timeline {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.about-timeline__inner {
		gap: 32px;
	}

	.about-timeline__eyebrow {
		margin-bottom: 20px;
	}

	.about-timeline__header {
		width: 100%;
	}

	.about-timeline__heading {
		font-size: 42px;
		line-height: 48px;
	}

	.about-timeline__description {
		text-align: left;
	}

	.about-timeline__card-title {
		font-size: 18px;
		line-height: 24px;
	}

	/* Line on the left, all cards on the right. */
	.about-timeline__line {
		left: 14px;
		transform: none;
	}

	.about-timeline__item,
	.about-timeline__item:nth-child(odd),
	.about-timeline__item:nth-child(even) {
		flex-direction: row;
	}

	.about-timeline__point {
		order: 0;
		margin-left: 0;
	}

	.about-timeline__card {
		order: 1;
		flex-basis: auto;
		max-width: 100%;
		margin-left: 10px;
	}

	.about-timeline__item:nth-child(odd) .about-timeline__card-arrow,
	.about-timeline__item:nth-child(even) .about-timeline__card-arrow {
		left: 0;
		right: auto;
		margin-left: -10px;
		margin-right: 0;
		transform: translateY(-50%) rotate(45deg);
	}

	.about-timeline__meta {
		display: none;
	}
}

@media (max-width: 767px) {
	.about-timeline {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.about-timeline__inner {
		gap: 20px;
	}

	.about-timeline__eyebrow {
		gap: 8px;
	}

	.about-timeline__heading {
		margin-bottom: 28px;
		font-size: 36px;
		line-height: 42px;
	}

	.about-timeline__description {
		text-align: center;
	}

	.about-timeline__card-title {
		font-size: 16px;
		line-height: 20px;
	}
}
