/**
 * نویا سئو هوش مصنوعی — استایل فرانت (بلوک FAQ)
 */
.noya-faq-block {
	direction: rtl;
	font-family: 'Vazirmatn', Tahoma, sans-serif;
	margin: 32px 0;
	max-width: 100%;
}
.noya-faq-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 18px;
	color: #0f766e;
	display: flex;
	align-items: center;
	gap: 8px;
}
.noya-faq-title::before {
	content: "";
	width: 6px;
	height: 24px;
	background: linear-gradient(180deg, #0d9488, #14b8a6);
	border-radius: 4px;
	display: inline-block;
}
.noya-faq-item {
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow .2s;
}
.noya-faq-item[open] {
	box-shadow: 0 4px 20px rgba(13, 148, 136, .08);
	border-color: #99f6e4;
}
.noya-faq-q {
	cursor: pointer;
	padding: 16px 18px;
	font-weight: 600;
	font-size: 16px;
	list-style: none;
	position: relative;
	color: #0f172a;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.noya-faq-q::-webkit-details-marker { display: none; }
.noya-faq-q::after {
	content: "+";
	font-size: 22px;
	color: #0d9488;
	font-weight: 700;
	transition: transform .2s;
	line-height: 1;
}
.noya-faq-item[open] .noya-faq-q::after { transform: rotate(45deg); }
.noya-faq-a {
	padding: 0 18px 16px;
	color: #475569;
	font-size: 14.5px;
	line-height: 2;
}
.noya-faq-a p { margin: 0 0 8px; }

/* ===== کادر مطالب مرتبط (لینک داخلی هوشمند) ===== */
.noya-related-box {
	direction: rtl;
	font-family: 'Vazirmatn', Tahoma, sans-serif;
	margin: 32px 0;
	max-width: 100%;
	background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 55%, #faf5ff 100%);
	border: 1px solid #ddd6fe;
	border-radius: 16px;
	padding: 22px 24px;
	box-shadow: 0 4px 24px rgba(79, 70, 229, .08);
}
.noya-related-title {
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 14px;
	color: #4338ca;
	display: flex;
	align-items: center;
	gap: 8px;
}
.noya-related-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.noya-related-item { margin: 0; }
.noya-related-link {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid #e0e7ff;
	border-radius: 10px;
	padding: 12px 16px;
	color: #3730a3;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: box-shadow .2s, transform .2s, border-color .2s;
}
.noya-related-link:hover {
	box-shadow: 0 6px 18px rgba(79, 70, 229, .15);
	border-color: #a5b4fc;
	transform: translateX(-2px);
	color: #4338ca;
}
.noya-related-arrow {
	color: #818cf8;
	font-size: 16px;
	flex-shrink: 0;
}
