/*
 * Danesh Land — Teacher Profile System — استایل صفحه آرشیو اساتید
 * کدنیم: TEACHER-CATEGORY-ARCHIVE
 * این فایل فقط داخل چایلدتم danesh-land-child قرار دارد.
 */

.tdch-t-archive {
	direction: rtl;
	text-align: right;
	background: #f7f8fa;
	padding: 32px 0 64px;
}

.tdch-t-archive__wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.tdch-t-archive__head {
	margin-bottom: 28px;
	text-align: center;
}

.tdch-t-archive__title {
	font-size: clamp(24px, 3.5vw, 34px);
	font-weight: 700;
	color: #1c1c2e;
	margin: 0;
}

.tdch-t-archive__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 22px;
}

.tdch-t-archive__card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(20, 20, 40, .06);
	overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease;
}

.tdch-t-archive__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(20, 20, 40, .13);
}

.tdch-t-archive__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: inherit;
	padding: 24px 16px;
}

.tdch-t-archive__photo {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	overflow: hidden;
	background: #eef1ff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.tdch-t-archive__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tdch-t-archive__photo-placeholder {
	font-size: 34px;
	font-weight: 700;
	color: #3949ab;
}

.tdch-t-archive__name {
	font-size: 17px;
	font-weight: 700;
	color: #1c1c2e;
	margin: 0 0 6px;
	line-height: 1.5;
}

.tdch-t-archive__role {
	font-size: 13.5px;
	color: #6a6a85;
	margin: 0;
	line-height: 1.6;
}

.tdch-t-archive__empty {
	text-align: center;
	color: #777;
	font-size: 15px;
	padding: 40px 0;
}

/* ---------- صفحه‌بندی ---------- */
.tdch-t-archive__pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.tdch-t-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	margin: 0 3px;
	border-radius: 8px;
	background: #fff;
	color: #3949ab;
	text-decoration: none;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(20, 20, 40, .06);
}

.tdch-t-archive__pagination .page-numbers.current {
	background: #3949ab;
	color: #fff;
}

.tdch-t-archive__pagination .page-numbers.dots {
	box-shadow: none;
	background: transparent;
}

/* ---------- ریسپانسیو ---------- */
@media (max-width: 480px) {
	.tdch-t-archive__grid {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 14px;
	}
	.tdch-t-archive__photo {
		width: 84px;
		height: 84px;
	}
}
