.wtoj-journey {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 20px;
	font-family: inherit;
	overflow: hidden;
}

.wtoj-heading {
	color: #3aa655;
	font-size: 42px;
	font-weight: 500;
	margin: 0 0 40px;
}

/* Timeline row */
.wtoj-timeline {
	position: relative;
	margin-bottom: 50px;
}

.wtoj-timeline-markers {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.wtoj-marker {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 0;
	font-family: inherit;
}

.wtoj-marker-label {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	transition: color 0.25s ease;
}

.wtoj-marker.is-active .wtoj-marker-label {
	color: #3aa655;
}

.wtoj-marker-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #c9c9c9;
	transition: all 0.25s ease;
}

.wtoj-marker.is-active .wtoj-marker-dot,
.wtoj-marker.is-passed .wtoj-marker-dot {
	background: #3aa655;
	border-color: #3aa655;
}

.wtoj-timeline-line {
	position: absolute;
	top: 34px;
	left: 6px;
	right: 6px;
	height: 2px;
	background: #d9d9d9;
	z-index: 1;
}

.wtoj-timeline-progress {
	height: 100%;
	width: 0%;
	background: #3aa655;
	transition: width 0.35s ease;
}

/* Slides */
.wtoj-slides-viewport {
	overflow: hidden;
	width: 100%;
}

.wtoj-slides-track {
	display: flex;
	transition: transform 0.5s ease;
	width: 100%;
}

.wtoj-slide {
	min-width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 60px;
}

.wtoj-slide-media {
	flex: 1 1 460px;
}

.wtoj-slide-img,
.wtoj-slide-img--placeholder {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
	background: #eaeaea;
}

.wtoj-slide-content {
	flex: 1 1 380px;
}

.wtoj-slide-bar {
	display: block;
	width: 40px;
	height: 3px;
	background: #3aa655;
	margin-bottom: 18px;
}

.wtoj-slide-year {
	font-size: 30px;
	font-weight: 500;
	color: #222;
	margin: 0 0 16px;
}

.wtoj-slide-desc {
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.wtoj-slide-desc p {
	margin: 0 0 12px;
}

@media (max-width: 782px) {
	.wtoj-heading {
		font-size: 30px;
	}
	.wtoj-timeline-markers {
		overflow-x: auto;
		gap: 24px;
		padding-bottom: 6px;
	}
	.wtoj-marker-label {
		font-size: 13px;
	}
	.wtoj-slide-img,
	.wtoj-slide-img--placeholder {
		height: 240px;
	}
	.wtoj-slide-year {
		font-size: 24px;
	}
}
