.timeline-bg .wp-block-cover__background {
	background-image: url('../../img/timeline-pattern.png');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: auto 100%;
}

.timeline {
	margin: 2rem 0;
}

.timeline__inner-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.timeline__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	max-width: 350px;
	margin: 0 auto;
}

.timeline__hex {
	background: url('../../img/timeline-bg.png') center center no-repeat;
	background-size: contain;
	width: 150px;
	height: 131px;
	font-size: .75em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	color: white;
	z-index: 3;
	position: relative;
}

.timeline__title {
	color: var(--colors--blue-cerulean);
	font-weight: 700;
	margin: 1rem 0 .25rem;
}

.timeline__item p {
	margin-top: 0;
}

@media all and (min-width: 768px) {


	.timeline__inner-container {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		position: relative;
		gap: 0;
	}

	.timeline__item {
		flex: 1 0 30%;
		position: relative;
		padding: 0 1rem;
		justify-content: flex-start;
		height: auto;
	}

	.timeline__item:nth-of-type(1)::before {
		content: "";
		display: block;
		position: absolute;
		top: 4rem;
		left: 50%;
		right: 0;
		height: 2px;
		background: var(--colors--blue-cerulean);
		width: 50%;
		z-index: 1;
	}

	.timeline__item:nth-of-type(2)::before {
		content: "";
		display: block;
		position: absolute;
		top: 4rem;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--colors--blue-cerulean);
		width: 100%;
		z-index: 1;
	}

	.timeline__item:nth-of-type(3)::before {
		content: "";
		display: block;
		position: absolute;
		top: 4rem;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--colors--blue-cerulean);
		width: 50%;
		z-index: 1;
	}

}

@media all and (min-width: 960px) {
	.timeline__inner-container {
		flex-wrap: nowrap;
	}

	.timeline__item {
		max-width: none;
		padding: 0 3rem;
	}
}