/* Buyer Journey WPBakery block */
.buyer-journey {
	width: 100vw;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding: 100px 0;
	background: var(--color-bg-dark);
	color: var(--color-text-secondary);

	* {
		font-weight: 400;
		color: inherit;
	}
}

.buyer-journey__head {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.buyer-journey__heading {
	max-width: 1040px;
	margin: 12px auto 0;
	color: #fff;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.buyer-journey__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
	gap: 48px;
	margin-top: 40px;
	align-items: start;
}

.buyer-journey__left {
	align-self: center;
}

.buyer-journey__text {
	max-width: 596px;

	* {
		color: inherit;
		font-size: 20px;
		line-height: 1.3;
	}
}

.buyer-journey__text p {
	margin: 0;
}

.buyer-journey__highlight {
	max-width: 500px;
	margin: 32px 0 0;
	padding-left: 13px;
	border-left: 3px solid var(--color-yellow-accent);
	color: var(--color-yellow-accent);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.buyer-journey__label {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.3;
	text-transform: uppercase;
}

.buyer-journey__steps {
	margin: 0;
	padding: 0;
	list-style: none;
}

.buyer-journey__step {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 6px 0;
	position: relative;
	z-index: 0;

	&:not(:last-child)::before {
		background: var(--color-text-secondary-light);
		position: absolute;
		z-index: -1;
		left: 18px;
		top: 6px;
		width: 1px;
		height: calc(100% + 6px);
		content: "";
	}
}

.buyer-journey__step + .buyer-journey__step {
	margin-top: 4px;
}

.buyer-journey__marker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	flex-shrink: 0;
}

.buyer-journey__marker--yellow {
	background: var(--color-yellow-accent);
	color: var(--color-text-primary-light);
}

.buyer-journey__marker--blue {
	background: var(--color-blue-accent);
	color: #fff;
}

.buyer-journey__marker--red {
	background: var(--color-red-accent);
	color: #fff;
}

.buyer-journey__step-title {
	margin: 0 0 4px;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}

.buyer-journey__step-text {
	margin: 4px 0 0;
	font-size: 16px;
	line-height: 1.3;
}

