.how-to-invest {
	background-color: var(--color-bg-dark);
	padding: var(--page-paddingYB) var(--page-padding) var(--page-paddingX);
	color: white;
}
.how-to-invest__layout {
	display: grid;
	grid-template-columns: 43% 1fr;
	gap: 16px;
	align-items: start;
}
.how-to-invest__intro h2 {
	color: white;
	margin-bottom: 24px;
	font-size: 2.5rem;
}
.how-to-invest__intro p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
}
.how-to-invest__intro ul {
	margin: 20px 24px;
	list-style: disc;
}
.how-to-invest__intro ul li {
	line-height: 1.8;
}
.how-to-invest__steps {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	overflow: hidden;
}
.how-to-invest__step-line-fill {
	position: absolute;
	width: 1px;
	height: 0;
	background-color: var(--color-orange);
	top: 0;
	left: 55px;
	z-index: 50;
}
.how-to-invest__step-wrapper {
	display: flex;
}
.how-to-invest__step-line {
	position: relative;
	padding: 0 56px;
}
.how-to-invest__step-line-bar {
	background-color: var(--color-oak);
	width: 1px;
	height: calc(100% + 24px);
	position: absolute;
	top: 0;
	left: 55px;
}
.how-to-invest__step-line-circle-wrapper {
	position: absolute;
	top: 48px;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 8px 0;
	width: 15px;
	height: 31px;
	background-color: var(--color-charcoal);
	transform: translateX(1px);
	z-index: 50;
}
.how-to-invest__step-line-circle {
	width: 15px;
	height: 15px;
	background-color: var(--color-oak);
	border-radius: 50%;
}
.how-to-invest__step-line-circle.active {
	background-color: var(--color-orange);
}
.how-to-invest__step-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 24px;
	background-color: rgba(255, 255, 255, 0.03);
	border-radius: var(--radius-medium);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.3s ease;
	opacity: 0;
	width: 100%;
}
.how-to-invest__step-item.active {
	opacity: 1;
}
.how-to-invest__step-item:hover {
	background-color: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.15);
}
.how-to-invest__step-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.how-to-invest__step-header {
	display: flex;
	align-items: center;
	gap: 16px;
}
.how-to-invest__step-badge {
	font-family: "Libre Baskerville", serif;
	font-size: var(--text-size-h4);
	letter-spacing: -0.32px;
}
.how-to-invest__step-content h5 {
	color: white;
	margin: 0;
	font-weight: 400;
	letter-spacing: -0.24px;
	max-width: 72%;
}
.how-to-invest__step-content h5 a {
	color: var(--color-orange);
	text-decoration: underline;
}
.how-to-invest__step-content a {
	align-self: flex-start;
	margin-top: 16px;
}

.hidden-more {
	display: none;
}
.hidden-more b {
	font-weight: bold;
	color: var(--color-orange);
}
.hidden-more a {
	text-decoration: underline;
}


@media (max-width: 991px) {
	.how-to-invest__layout {
		grid-template-columns: 1fr;
	}
	.how-to-invest__step-line,
	.how-to-invest__step-line-fill {
		display: none;
	}
	.step-content h5 {
		max-width: 100%;
	}
}
