/*
 * Блок «Свежие комментарии» (v2) — карточка в правой колонке
 * списков /posts/ (раньше жил в выезжающей панели, панель удалена).
 */

.wxxx-last-comments {
	display: flex;
	flex-direction: column;
	color: #18191a;
	font-size: 14px;
	line-height: 1.45;
}

.wxxx-last-comments .wxxx-lc-header {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 12px 14px 10px;
	/* по канону vc.ru: тонкий серый разделитель; значения синхронны .wxxx-side-card__head (wxxx-feed.css) */
	border-bottom: 1px solid #eceef0;
	font-size: 15px;
	font-weight: 700;
}

.wxxx-last-comments .wxxx-lc-header .icon {
	margin: 0;
	color: var(--wxxx-red, #900909);
	font-size: 16px;
}

/* без внутреннего скролла: карточка растёт на всю высоту списка */
.wxxx-last-comments .wxxx-lc-list {
	flex: 1 1 auto;
}

.wxxx-last-comments .wxxx-lc-item {
	display: flex;
	gap: 10px;
	padding: 8px 14px;
	border-bottom: 1px solid #eceef0;
	text-decoration: none;
	transition: background .15s;
}

.wxxx-last-comments .wxxx-lc-item:last-child {
	border-bottom: 0;
}

.wxxx-last-comments .wxxx-lc-item:hover {
	background: #f7f8f9;
}

.wxxx-last-comments .wxxx-lc-body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.wxxx-last-comments .wxxx-lc-meta {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.wxxx-last-comments .wxxx-lc-user {
	font-weight: 700;
	max-width: 60%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wxxx-last-comments .wxxx-lc-date {
	margin-left: auto;
	color: #9aa0a6;
	font-size: 12px;
	white-space: nowrap;
}

.wxxx-last-comments .wxxx-lc-text {
	color: #18191a;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wxxx-last-comments .wxxx-lc-text .smile {
	vertical-align: middle;
}

.wxxx-last-comments .wxxx-lc-target {
	color: #9aa0a6;
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color .15s;
}

.wxxx-last-comments .wxxx-lc-item:hover .wxxx-lc-target {
	color: var(--wxxx-red, #900909);
}

.wxxx-last-comments .wxxx-lc-empty {
	padding: 20px 14px;
	color: #9aa0a6;
	text-align: center;
}

/* Обёртка-карточка — единый класс .wxxx-side-card (wxxx-feed.css),
   задаётся в шаблонах posts_section. */
