.experts-list__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.experts-list__card {
	display: flex;
	gap: 20px;
	padding: 24px;
	border: 1px solid #ececec;
	border-color: var(--stroke_black, #ececec);
	border-radius: 8px;
	background: #fff;
	background: var(--card_bg_black, #fff);
	height: 100%;
}

.experts-list__avatar-link {
	flex-shrink: 0;
}

.experts-list__avatar {
	object-fit: cover;
	width: 100px;
	height: 100px;
}

.experts-list__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.experts-list__name {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
}

.experts-list__city,
.experts-list__metric {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.experts-list__education {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.experts-list__education-title {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.experts-list__education-item {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.experts-list__empty {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 150px;
	text-align: center;
}

.experts-list__empty p {
	margin: 0;
	font-weight: 600;
}

.experts-list__nav {
	margin-top: 32px;
}

@media (max-width: 991px) {
	.experts-list__grid {
		grid-template-columns: 1fr;
	}
}
