/*
 * Shipping Policy — Journey Timeline
 * Depends on: design-tokens.css, log-sp-quickfacts.css
 * Page: body.log-shipping-page
 */

.journey-rail { position: relative; max-width: 860px; margin-top: 50px; }

.journey-line-track {
	position: absolute;
	left: 11px;
	top: 4px;
	bottom: 4px;
	width: 2px;
	background: rgba(255, 255, 255, .12);
}

.journey-line-fill {
	position: absolute;
	left: 11px;
	top: 4px;
	width: 2px;
	height: 0%;
	background: linear-gradient(180deg, var(--sage-400), var(--sage-600));
	transition: height .5s var(--ease);
}

.journey-step { position: relative; padding-left: 48px; padding-bottom: 44px; }
.journey-step:last-child { padding-bottom: 2px; }

.journey-dot {
	position: absolute;
	left: 0;
	top: 1px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--plum-900);
	border: 2px solid rgba(255, 255, 255, .22);
	display: flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	z-index: 2;
	transition: all .4s var(--ease);
}

.journey-dot .icon { width: 11px; height: 11px; opacity: 0; transition: opacity .3s var(--ease); }

.journey-step.active .journey-dot {
	background: var(--sage-500);
	border-color: var(--sage-400);
	box-shadow: 0 0 0 6px rgba(155, 185, 138, .16);
}

.journey-step.active .journey-dot .icon { opacity: 1; color: var(--plum-950); }

.journey-eyebrow {
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--sage-400);
	margin-bottom: 7px;
}

.journey-step h4 {
	font-family: var(--display);
	font-size: 21px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 9px;
}

.journey-step p {
	font-size: 14px;
	line-height: 1.75;
	color: #d6c4cd;
	max-width: 600px;
	margin: 0;
}

.journey-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 15px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .13);
	color: #f0e3e9;
	padding: 8px 15px;
	border-radius: var(--r-pill, 999px);
	font-size: 12px;
	font-weight: 700;
}

.journey-badge .icon { width: 13px; height: 13px; color: var(--sage-400); }
