/*
 * استایل‌های تکمیلی پی‌وست
 * توکن‌های اصلی طراحی در style.css (روت تم) تعریف شده‌اند.
 * این فایل برای اجزای اضافه‌شده‌ی آینده (فرم تماس، صفحه‌بندی و ...) است.
 */

.pv-entry-content h2 { margin-top: 2rem; }
.pv-entry-content img { border: 1px solid var(--pv-line); margin: 1rem 0; }
.pv-entry-content blockquote {
	border-right: 3px solid var(--pv-turquoise);
	padding-right: 1rem;
	color: var(--pv-ink-soft);
	margin: 1.5rem 0;
}

.pv-widget { margin-bottom: 2rem; }
.pv-widget-title { font-size: 1rem; }

/* صفحه‌بندی */
.pagination, .nav-links {
	display: flex;
	gap: 1rem;
	justify-content: center;
	padding: 2rem 0;
	font-size: 0.9rem;
}

/* دستیار هوش مصنوعی */
#pv-ai-widget { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 999; font-family: var(--pv-font-body); }
#pv-ai-toggle {
	width: 52px; height: 52px; border-radius: 50%;
	background: var(--pv-ink); color: #fff; border: none;
	font-size: 1.3rem; cursor: pointer;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#pv-ai-panel {
	position: absolute; bottom: 64px; left: 0;
	width: 320px; max-height: 440px;
	background: #fff; border: 1px solid var(--pv-ink);
	display: flex; flex-direction: column;
}
.pv-ai-panel__head {
	display: flex; justify-content: space-between; align-items: center;
	padding: 0.75rem 1rem; border-bottom: 1px solid var(--pv-line);
	font-weight: 700;
}
.pv-ai-panel__head button { background: none; border: none; font-size: 1.2rem; cursor: pointer; }
.pv-ai-panel__messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; max-height: 300px; }
.pv-ai-msg { font-size: 0.85rem; line-height: 1.6; padding: 0.5rem 0.75rem; max-width: 85%; }
.pv-ai-msg--bot { background: var(--pv-paper-raised); align-self: flex-start; border: 1px solid var(--pv-line); }
.pv-ai-msg--user { background: var(--pv-ink); color: #fff; align-self: flex-end; }
.pv-ai-panel__form { display: flex; border-top: 1px solid var(--pv-line); }
.pv-ai-panel__form input { flex: 1; border: none; padding: 0.75rem; font-family: inherit; font-size: 0.85rem; }
.pv-ai-panel__form input:focus { outline: none; }
.pv-ai-panel__form button { border: none; background: none; padding: 0 1rem; cursor: pointer; font-size: 1.1rem; }
@media (max-width: 480px) {
	#pv-ai-panel { width: calc(100vw - 3rem); }
}
