/* Vertical timeline (§6: also the mobile fallback for a horizontal process band) */

.timeline {
	padding-block: var(--section-pad);
}

.timeline__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 48px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.timeline__intro {
	max-width: 30em;
	color: var(--slate);
	margin: 0;
}

.timeline__list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 46em;
}

.timeline__item {
	position: relative;
	padding-left: 32px;
	padding-bottom: 40px;
	border-left: 2px solid var(--line);
}

.timeline__item:last-child {
	border-left-color: transparent;
	padding-bottom: 0;
}

.timeline__dot {
	position: absolute;
	left: -7px;
	top: 4px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--paper);
	border: 2px solid var(--cyan);
}

.timeline__item--current .timeline__dot {
	background: var(--cyan);
	width: 14px;
	height: 14px;
	left: -8px;
}

.timeline__date {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--cyan-dark);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}

.timeline__title {
	margin: 0 0 0.5em;
	font-size: 1.25rem;
}

.timeline__description {
	margin: 0;
	color: var(--slate);
}
