/* fkm-about — استایل ویجت (بارگذاری فقط هنگام استفاده) */
.yab-section {
	--_accent: var(--yab-accent, #0f6b5c);
	--_accent2: var(--yab-accent-2, #1f8f7b);
	--_dark: var(--yab-sh-dark, #c8c8c8);
	--_light: var(--yab-sh-light, #ffffff);
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: start;
	direction: rtl;
}
.yab-text { text-align: right; }
.yab-section.yab-swap .yab-text { order: 2; }
.yab-section.yab-swap .yab-visual { order: 1; }
.yab-title {
	font-size: 40px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 35px;
	line-height: 1.3;
	text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}
.yab-desc {
	font-size: 17px;
	color: #444;
	line-height: 2.2;
	text-align: justify;
}
.yab-desc p { margin: 0 0 28px; }
/* ── دکمه دانلود ── */
.yab-btn {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 20px;
	padding: 18px 35px;
	background: linear-gradient(135deg, var(--_accent), var(--_accent2));
	color: #fff;
	border: none;
	border-radius: 20px;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	box-shadow:
		8px 8px 16px var(--_dark),
		-8px -8px 16px var(--_light),
		inset 0 2px 5px rgba(255,255,255,0.25);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.yab-btn::before {
	content: '';
	position: absolute;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
	transition: right 0.5s ease;
}
.yab-btn:hover::before { right: 100%; }
.yab-btn:hover {
	transform: translateY(-3px);
	box-shadow:
		10px 10px 20px var(--_dark),
		-10px -10px 20px var(--_light),
		inset 0 2px 5px rgba(255,255,255,0.3);
}
.yab-btn:active { transform: translateY(0); }
.yab-pdf-icon {
	width: 50px;
	height: 60px;
	position: relative;
	flex-shrink: 0;
}
.yab-pdf-icon svg {
	width: 100%;
	height: 100%;
}
.yab-btn-text {
	position: relative;
	z-index: 2;
}
/* ── کارت پرتره ── */
.yab-visual {
	background: #1a1a1a;
	border-radius: 55px;
	overflow: hidden;
	position: relative;
	box-shadow:
		12px 12px 25px var(--_dark),
		-12px -12px 25px var(--_light);
	padding: 40px;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid #ffffff;
}
.yab-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 20%, rgba(60,60,60,0.8) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 80%, rgba(40,40,40,0.8) 0%, transparent 50%);
	pointer-events: none;
}
.yab-frame {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 480px;
}
.yab-frame-border {
	border: 3px solid rgba(255,255,255,0.25);
	border-radius: 60px;
	padding: 15px;
	position: relative;
	backdrop-filter: blur(2px);
}
.yab-portrait {
	width: 100%;
	height: 380px;
	border-radius: 50px;
	object-fit: cover;
	display: block;
}
/* ── ریسپانسیو ── */
@media (max-width: 1000px) {
	.yab-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.yab-visual,
	.yab-section.yab-swap .yab-visual {
		order: -1;
		min-height: auto;
		padding: 20px;
		border-width: 3px;
	}
	.yab-title {
		font-size: 30px;
		text-align: center;
	}
}
@media (max-width: 600px) {
	.yab-title {
		font-size: 24px;
		margin-bottom: 25px;
	}
	.yab-desc {
		font-size: 15px;
		line-height: 2;
	}
	.yab-btn {
		font-size: 16px;
		padding: 14px 22px;
		width: 100%;
		justify-content: center;
		border-radius: 16px;
	}
	.yab-pdf-icon {
		width: 40px;
		height: 50px;
	}
	.yab-frame-border {
		padding: 10px;
		border-radius: 40px;
	}
	.yab-portrait { border-radius: 34px; }
}

/* حالت‌های داینامیک */
.yab-gray .yab-portrait { filter: grayscale(100%) contrast(1.1); }
