/* ---------- Sobre ---------- */

.section-eyebrow {
	font-family: "Space Mono", monospace;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: .15rem;
	font-size: .8rem;
}

/* ---------- Timeline ---------- */

.timeline {
	position: relative;
	padding-left: 2rem;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--green);
}

.timeline-item {
	position: relative;
	margin-bottom: 2rem;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	background: var(--gold);
	border: 3px solid white;
	border-radius: 50%;
	left: -1.95rem;
	top: 1.25rem;
	box-shadow: 0 0 0 3px var(--green);
	z-index: 2;
}

.timeline .card {
	transition: transform .25s, box-shadow .25s;
	border-radius: 1rem;
}

.timeline .card:hover {
	transform: translateX(8px);
	box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .12);
}

.timeline h5 {
	font-family: "Fraunces", serif;
	color: var(--green-dark);
	margin-bottom: .75rem;
}

.timeline p {
	margin: 0;
	color: #666;
}
