/*
 * Каталог юристов /lawyers/ — десктопная вёрстка (карточки/список).
 * Табы и блок фильтров — общий переиспользуемый компонент, см. public/css/catalog_filters_pc.css.
 * Изолирован от main.css и от lawyers_catalog.css (моб.) намеренно: content_center на этой
 * странице ~600px (content-width 1265 минус сайдбары 377+240 и гэпы), поэтому карточка
 * рассчитана на другую ширину — общего компонента с мобильной версией здесь нет.
 */

.lcpc-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 18px 20px 12px;
}
.lcpc-head__title {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -.4px;
	color: #12203f;
}
.lcpc-head__count {
	font-size: 12px;
	color: #6f7a90;
}

.lcpc-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 10px 12px 12px;
	list-style: none;
	margin: 0;
}
.lcpc-card {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto 18px;
	align-items: center;
	gap: 16px;
	padding: 6px 16px;
	background: #fff;
	border: 1px solid #e7ebf2;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
}
.lcpc-card:hover {
	border-color: #d5deed;
	box-shadow: 0 4px 14px rgba(20, 43, 80, .07);
}
.lcpc-card__avatar_wrap {
	position: relative;
	width: 72px;
	height: 72px;
}
.lcpc-card__avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}
.lcpc-card__online {
	position: absolute;
	right: 0;
	bottom: 2px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 3px solid #fff;
	background: #24b665;
}
.lcpc-card__main {
	min-width: 0;
}
.lcpc-card__name {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 6px;
}
.lcpc-card__name_text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 800;
	color: #12203f;
}
.lcpc-card__verified {
	display: inline-flex;
	flex-shrink: 0;
}
.lcpc-card__verified svg {
	width: 14px;
	height: 14px;
	fill: #1684ff;
}
.lcpc-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 4px;
}
.lcpc-card__meta:last-child {
	margin-bottom: 0;
}
.lcpc-card__status {
	color: #e31d2b;
	font-weight: 600;
}
.lcpc-card__rating_num {
	font-weight: 700;
	color: #12203f;
}
.lcpc-card__stars svg {
	width: 14px;
	height: 14px;
}
.lcpc-card__city {
	color: #737d90;
}
.lcpc-card__sos {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 19px;
	min-width: 27px;
	padding: 0 5px;
	border-radius: 5px;
	background: #e31d2b;
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
}
.lcpc-card__reviews {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	min-width: 90px;
	text-align: right;
}
.lcpc-card__reviews_num {
	font-size: 17px;
	font-weight: 800;
	color: #1677ff;
	line-height: 1.2;
}
.lcpc-card__reviews_label {
	font-size: 12px;
	color: #a3abbb;
}
.lcpc-card__arrow {
	font-size: 26px;
	line-height: 1;
	color: #b7bfcf;
}

.lcpc-empty {
	padding: 40px 20px;
	text-align: center;
	color: #6f7a90;
}

.lcpc-more {
	padding: 4px 20px 20px;
}
.lcpc-more__btn {
	display: block;
	width: 100%;
	height: 44px;
	line-height: 44px;
	border: 1.5px solid #0b2f70;
	border-radius: 11px;
	background: #fff;
	color: #0b2f70;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}
.lcpc-more__btn:hover {
	background: #f8fafc;
}
