/**
 * Related Insights — card grid for in-post internal link blocks.
 */
.single-post-content .dt-related-insights {
	margin: 48px 0 32px;
	padding: 32px 28px 28px;
	border: 1px solid #e9e8ee;
	border-radius: 12px;
	background: linear-gradient(180deg, #fffaf5 0%, #fff 42%);
	box-shadow: 0 8px 32px rgba(245, 105, 22, 0.06);
}

.single-post-content .dt-related-insights__head {
	margin-bottom: 24px;
}

.single-post-content .dt-related-insights__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	margin-bottom: 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(90deg, #f0aa0e 0%, #f56916 100%);
}

.single-post-content .dt-related-insights__label .ti {
	font-size: 14px;
	line-height: 1;
}

.single-post-content .dt-related-insights__title {
	display: block;
	font-family: Roboto, sans-serif;
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 700;
	line-height: 1.25;
	color: #333;
	margin: 0 0 8px;
	padding: 0;
}

.single-post-content .dt-related-insights__title-accent {
	color: #f56916;
}

.single-post-content .dt-related-insights__subtitle {
	max-width: 560px;
	font-size: 15px;
	line-height: 1.55;
	color: #666;
	margin: 0 0 14px;
}

.single-post-content .dt-related-insights__divider {
	width: 56px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, #f56916 0%, #f0aa0e 100%);
}

.single-post-content .dt-related-insights__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-post-content .dt-related-insights__card {
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-post-content .dt-related-insights__link {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 100%;
	padding: 16px 18px;
	border: 1px solid #ececf0;
	border-radius: 8px;
	background: #fff;
	color: #333;
	text-decoration: none;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.single-post-content .dt-related-insights__link:hover,
.single-post-content .dt-related-insights__link:focus-visible {
	border-color: #f56916;
	box-shadow: 0 6px 20px rgba(245, 105, 22, 0.12);
	transform: translateY(-1px);
	color: #151515;
}

.single-post-content .dt-related-insights__link:focus-visible {
	outline: 2px solid #f56916;
	outline-offset: 2px;
}

.single-post-content .dt-related-insights__index {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #f56916;
	background: rgba(245, 105, 22, 0.1);
}

.single-post-content .dt-related-insights__text {
	flex: 1;
	min-width: 0;
	font-family: Roboto, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

.single-post-content .dt-related-insights__arrow {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #f6f6f6;
	color: #666;
	font-size: 16px;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.single-post-content .dt-related-insights__link:hover .dt-related-insights__arrow,
.single-post-content .dt-related-insights__link:focus-visible .dt-related-insights__arrow {
	background: linear-gradient(135deg, #f0aa0e 0%, #f56916 100%);
	color: #fff;
	transform: translateX(2px);
}

@media (max-width: 991px) {
	.single-post-content .dt-related-insights {
		padding: 24px 20px 20px;
	}

	.single-post-content .dt-related-insights__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.single-post-content .dt-related-insights__link {
		padding: 14px 16px;
	}

	.single-post-content .dt-related-insights__text {
		font-size: 14px;
	}
}
