/* fkm-single-post — استایل ویجت (بارگذاری فقط هنگام استفاده) */
.ysp-layout {
	--_box-bg: var(--ysp-box-bg, #f4f4f4);
	--_accent: var(--ysp-accent, #1a5e51);
	--_sidebar-w: var(--ysp-sidebar-w, 280px);
	display: flex;
	gap: 25px;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
	direction: rtl;
}
.ysp-box {
	background: var(--_box-bg);
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	margin-bottom: 20px;
}
.ysp-box-title {
	font-size: 14px;
	font-weight: 900;
	color: #222;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 2px solid #ddd;
}
/* ── سایدبار راست: فهرست ── */
.ysp-right {
	width: var(--_sidebar-w);
	flex-shrink: 0;
}
.ysp-sticky .ysp-right .ysp-box {
	position: sticky;
	top: 20px;
}
.ysp-toc {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ysp-toc li {
	font-size: 11.5px;
	color: #555;
	padding: 6px 0;
	border-bottom: 1px dashed #e5e5e5;
	cursor: pointer;
	transition: 0.2s;
}
.ysp-toc li:hover {
	color: var(--_accent);
	padding-right: 5px;
}
.ysp-toc li.ysp-toc-h3 {
	padding-right: 14px;
	font-size: 11px;
}
.ysp-toc li.ysp-toc-h3:hover { padding-right: 19px; }
/* ── محتوای اصلی ── */
.ysp-main {
	flex: 1;
	background: var(--_box-bg);
	padding: 30px;
	border-radius: 25px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	min-width: 0;
}
.ysp-breadcrumb {
	font-size: 11px;
	color: #888;
	margin-bottom: 15px;
}
.ysp-breadcrumb a {
	color: #888;
	text-decoration: none;
}
.ysp-breadcrumb a:hover { color: var(--_accent); }
.ysp-article-title {
	font-size: 20px;
	font-weight: 900;
	color: #222;
	line-height: 1.6;
	margin: 0 0 15px;
}
.ysp-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 11px;
	color: #666;
	margin-bottom: 25px;
	flex-wrap: wrap;
}
.ysp-author {
	display: flex;
	align-items: center;
	gap: 8px;
}
.ysp-avatar {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	object-fit: cover;
}
.ysp-featured {
	width: 100%;
	border-radius: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	display: block;
}
.ysp-excerpt {
	font-size: 12.5px;
	color: #444;
	line-height: 2.2;
	text-align: justify;
	margin: 0 0 25px;
	font-weight: 700;
}
.ysp-content-body {
	font-size: 12px;
	color: #555;
	line-height: 2.2;
	text-align: justify;
}
.ysp-content-body h2 {
	font-size: 16px;
	font-weight: 900;
	color: #222;
	margin: 30px 0 15px;
	text-align: right;
	scroll-margin-top: 30px;
}
.ysp-content-body h3 {
	font-size: 14px;
	font-weight: 800;
	color: #333;
	margin: 24px 0 12px;
	text-align: right;
	scroll-margin-top: 30px;
}
.ysp-content-body p { margin: 0 0 15px; }
.ysp-content-body img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
}
.ysp-content-body a { color: var(--_accent); }
/* ── سایدبار چپ ── */
.ysp-left {
	width: var(--_sidebar-w);
	flex-shrink: 0;
}
.ysp-latest-item {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
	text-decoration: none;
	align-items: center;
	background: #fff;
	padding: 8px;
	border-radius: 12px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.03);
	transition: transform 0.2s ease;
}
.ysp-latest-item:hover { transform: translateY(-2px); }
.ysp-latest-thumb {
	width: 60px;
	height: 45px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}
.ysp-latest-title {
	font-size: 11px;
	font-weight: 700;
	color: #333;
	line-height: 1.5;
}
.ysp-dept-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11.5px;
	color: #444;
	text-decoration: none;
	padding: 6px 0;
	font-weight: 600;
	transition: color 0.2s ease;
}
.ysp-dept-link:hover { color: var(--_accent); }
/* ── ریسپانسیو ── */
@media (max-width: 1024px) {
	.ysp-layout {
		flex-direction: column;
		align-items: center;
	}
	.ysp-right, .ysp-left, .ysp-main {
		width: 100%;
		max-width: 100%;
	}
	.ysp-right .ysp-box { position: static; }
}
