/* Same Category Related Posts — Smart */
.scrp-related {
	margin: 28px 0 34px;
	width: 100%;
	box-sizing: border-box;
}

.scrp-heading {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
}

.scrp-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.scrp-card {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 100px;
	box-sizing: border-box;
	padding: 12px 16px;
	border: 1px solid #e3e8ee;
	border-radius: 18px;
	background: #fff;
	text-decoration: none !important;
	box-shadow: 0 5px 18px rgba(20, 35, 55, 0.055);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.scrp-card:hover,
.scrp-card:focus-visible {
	transform: translateY(-2px);
	border-color: #cfd8e3;
	box-shadow: 0 9px 24px rgba(20, 35, 55, 0.10);
}

.scrp-thumb {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	margin-right: 15px;
	overflow: hidden;
	border-radius: 12px;
	background: #f3f5f7;
}

.scrp-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.scrp-no-image {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f2f4f6, #e7ebef);
}

.scrp-copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.scrp-category {
	margin-bottom: 4px;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #32863c;
}

.scrp-title {
	display: block;
	color: #101828;
	font-size: 18px;
	line-height: 1.28;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.scrp-card:hover .scrp-title,
.scrp-card:focus-visible .scrp-title {
	text-decoration-thickness: 2px;
}

@media (max-width: 640px) {
	.scrp-related {
		margin: 22px 0 28px;
	}

	.scrp-card {
		min-height: 88px;
		padding: 10px 12px;
		border-radius: 14px;
	}

	.scrp-thumb {
		flex-basis: 60px;
		width: 60px;
		height: 60px;
		margin-right: 12px;
		border-radius: 9px;
	}

	.scrp-title {
		font-size: 16px;
		line-height: 1.3;
	}

	.scrp-category {
		font-size: 10px;
	}
}
