/* fkm-departments-light — استایل ویجت (بارگذاری فقط هنگام استفاده) */
.ydl-section {
	--_accent: var(--ydl-accent, #064032);
	--_btn-bg: var(--ydl-btn-bg, #f2f4f3);
	--_btn-border: var(--ydl-btn-border, #e5eae7);
	--_btn-hover-text: var(--ydl-btn-hover-text, #ffffff);
	width: 100%;
	direction: rtl;
	color: #333;
}
.ydl-section-title {
	font-size: 24px;
	font-weight: 900;
	color: #1a1a1a;
	text-align: center;
	margin: 0 0 45px;
}
.ydl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.ydl-card {
	background-color: #ffffff;
	border-radius: 32px;
	padding: 36px 24px 28px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ydl-card.ydl-lift:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}
.ydl-icon {
	width: var(--ydl-icon-size, 54px);
	height: var(--ydl-icon-size, 54px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--_accent);
	font-size: calc(var(--ydl-icon-size, 54px) * 0.8);
	margin-bottom: 18px;
}
.ydl-icon svg {
	width: 100%;
	height: 100%;
	stroke-width: 1.8;
}
.ydl-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.ydl-title {
	font-size: 16px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 14px;
}
.ydl-desc {
	font-size: 11.5px;
	color: #666;
	line-height: 1.9;
	margin: 0 0 24px;
	flex-grow: 1;
}
.ydl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 180px;
	padding: 8px 16px;
	background-color: var(--_btn-bg);
	color: var(--_accent);
	border: 1px solid var(--_btn-border);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s ease;
}
.ydl-btn:hover {
	background-color: var(--_accent);
	color: var(--_btn-hover-text);
	border-color: var(--_accent);
}
.ydl-arrow {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: var(--_accent);
	color: var(--_btn-hover-text);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}
.ydl-btn:hover .ydl-arrow {
	background-color: var(--_btn-hover-text);
	color: var(--_accent);
}
.ydl-arrow svg {
	width: 11px;
	height: 11px;
}
