/* Block: Start Here + Table of Contents */

.block--start-here-toc {
	padding: 40px 0;
}

/* Intro row: 50/50 split of intro content + TOC nav */

.block--start-here-toc .block__intro-row {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin-bottom: 0;
}

.block--start-here-toc .block__intro {
	flex: 0 0 50%;
	max-width: 50%;
}

.block--start-here-toc h2 {
	margin-bottom: 15px;
}

.block--start-here-toc .block__text {
	margin-bottom: 20px;
}

.block--start-here-toc .block__text p {
	margin-bottom: 10px;
}

.block--start-here-toc .block__intro .orange-btn {
	margin-bottom: 0;
}

/* Link styles across the entire block */

.block--start-here-toc a:not(.button-fade) {
	color: #0065cc;
	text-decoration: none;
	transition: color 0.15s ease;
}

.block--start-here-toc a:not(.button-fade):hover {
	color: #1f3b63;
	text-decoration: underline;
}

/* TOC nav — right column in the intro row */

.block--start-here-toc .block__toc-nav {
	flex: 0 0 calc(50% - 40px);
	max-width: calc(50% - 40px);
	padding-top: 40px;
}

.block--start-here-toc .block__toc-nav-item {
	border-bottom: 1px solid #ddd;
}

.block--start-here-toc .block__toc-nav-item:first-child {
	border-top: 1px solid #ddd;
}

.block--start-here-toc .block__toc-nav a {
	display: block;
	padding: 10px 5px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}

/* TOC sections — full width below the intro row */

.block--start-here-toc .block__toc-wrap {
	padding: 20px 0;
	margin-top: 40px;
}

.block--start-here-toc .block__toc-content {
	width: 100%;
}

.block--start-here-toc .block__toc-section {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #1f3b63;
}

.block--start-here-toc .block__toc-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.block--start-here-toc .block__toc-section h3 {
	color: #1f3b63;
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 15px;
}

.block--start-here-toc .block__toc-body p {
	margin-bottom: 10px;
}

.block--start-here-toc .block__toc-body ol,
.block--start-here-toc .block__toc-body ul {
	padding-left: 2.5em;
}

.block--start-here-toc .block__toc-body li {
	font-size: 21px;
	line-height: 32px;
	margin-left: 0;
}

/* Stat boxes */

.block--start-here-toc .block__toc-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	gap: 12px;
	margin-bottom: 20px;
}

.block--start-here-toc .block__toc-stat {
	background: linear-gradient(#162b75, #02072a);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.block--start-here-toc .block__toc-stat-headline {
	display: block;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 8px;
}

.block--start-here-toc .block__toc-stat-subline {
	display: block;
	color: #ffc02d;
	font-family: 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
}

/* Stats CTA item — flows in the same grid as stat boxes */

.block--start-here-toc .block__toc-stat--cta {
	background: none;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.block--start-here-toc .block__toc-stats-cta-text {
	font-size: 22px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.4;
	color: #1f3b63;
	margin: 0;
}

.block--start-here-toc .block__toc-stat--cta .button-fade {
	background-color: rgba(252, 89, 36, 1) !important;
	color: #fff !important;
	line-height: 1.2;
	margin-bottom: 0 !important;
}

.block--start-here-toc .block__toc-stat--cta .button-fade:hover {
	background-color: #ffc02d !important;
	color: #1f3b63 !important;
}

/* Responsive: stack columns on mobile */

@media (max-width: 768px) {
	.block--start-here-toc .block__intro-row {
		flex-direction: column;
		gap: 30px;
	}

	.block--start-here-toc .block__intro,
	.block--start-here-toc .block__toc-nav {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.block--start-here-toc .block__intro .orange-btn {
		margin-bottom: 0;
	}

	.block--start-here-toc .block__toc-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}
