/* YouMind — More Featured Insight (related Insights grid)
   Matches blog-single.html .post-more + .blog-card */

.ymct-related-insights.post-more {
	--ymct-content: 1560px;
	--ymct-gutter: 56px;
	--ymct-font: "Poppins", sans-serif;
	width: 100%;
	padding: 56px var(--ymct-gutter) 96px;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #cafdf9 160%);
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.ymct-related-insights *,
.ymct-related-insights *::before,
.ymct-related-insights *::after {
	box-sizing: border-box;
}

.ymct-related-insights .post-more-inner {
	max-width: var(--ymct-content);
	margin: 0 auto;
}

.ymct-related-insights .post-more-inner > h2 {
	margin: 0 0 40px;
	padding: 0;
	border: 0;
	font-family: "Poppins", sans-serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #021019;
	background: transparent;
}

.ymct-related-insights .post-more-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.ymct-related-insights .blog-card {
	position: relative;
	background: #ffffff;
	border: 1px solid #f2f2f2;
	border-radius: 32px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	min-height: 100%;
	box-shadow: 0 8px 28px rgba(2, 16, 25, 0.06);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ymct-related-insights .blog-card:hover {
	border-color: rgba(25, 154, 145, 0.35);
	box-shadow: 0 10px 28px rgba(2, 16, 25, 0.08);
}

.ymct-related-insights .blog-card-img {
	width: 100%;
	height: 220px;
	border-radius: 24px;
	background-color: #dfe8ea;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.ymct-related-insights .blog-card-img.is-placeholder {
	background-image: linear-gradient(135deg, #e8f4f3 0%, #dfe8ea 100%);
}

.ymct-related-insights .blog-card-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 0 0 auto;
}

.ymct-related-insights .blog-card-body h3 {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: 0;
	color: #021019;
	background: transparent;
}

.ymct-related-insights .blog-card-body p {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #031728;
	opacity: 0.8;
}

.ymct-related-insights .blog-card > .link-read {
	position: static;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 8px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #031728;
	text-decoration: none;
	width: fit-content;
	z-index: 2;
}

.ymct-related-insights .blog-card > .link-read::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 1;
}

.ymct-related-insights .blog-card > .link-read:hover {
	opacity: 0.75;
	color: #031728;
	text-decoration: none;
}

.ymct-related-insights .blog-card > .link-read .ymct-icon-arrow-ne {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: block;
	color: currentColor;
}

.ymct-related-empty {
	margin: 0;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #8d99a6;
}

@media (max-width: 1200px) {
	.ymct-related-insights.post-more {
		--ymct-gutter: 24px;
	}

	.ymct-related-insights .blog-card-body h3 {
		font-size: 20px;
	}
}

@media (max-width: 900px) {
	.ymct-related-insights .post-more-grid {
		grid-template-columns: 1fr;
	}

	.ymct-related-insights .post-more-inner > h2 {
		font-size: 28px;
		margin-bottom: 28px;
	}

	.ymct-related-insights.post-more {
		padding: 40px var(--ymct-gutter) 64px;
	}

	.ymct-related-insights .blog-card-img {
		height: 200px;
	}
}
