/* ==========================================================================
   Timeline Element
   ========================================================================== */

.timeline-wrapper {
	width: 100%;
}

.timeline-row {
	display: grid;
	grid-template-columns: 15px 1fr;
	gap: 1.5em;
	min-height: 100px;
}

/* --- Visual track (dot + connecting line) --- */

.timeline-visual-track {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

.timeline-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--iron-t-2, rgba(142, 140, 139, 0.3));
	flex-shrink: 0;
}

.timeline-line {
	width: 1px;
	flex-grow: 1;
	background-color: var(--iron-t-2, rgba(142, 140, 139, 0.3));
	min-height: 10px;
}

/* --- Text content --- */

.timeline-text-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.timeline-eyebrow {
	color: var(--lazio-black, #1C1917);
}

.timeline-title {
	color: var(--lazio-black, #1C1917);
}

.timeline-description {
	font-style: italic;
	color: var(--slate-gray, #767676);
}
