/* ── Post Categories Sidebar Widget ── */

.pcw-list {
	background-color: #ffffff;
	border-radius: 6px;
	overflow: hidden;
}

.pcw-item + .pcw-item {
	border-top: 1px solid #e5e7eb;
}

.pcw-item a {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.pcw-item a:hover {
	background-color: #f3f4f6;
	color: #111827;
}

.pcw-item.pcw-active a {
	background-color: #f0f4ff;
	color: #1e56a0;
}

.pcw-num {
	color: #374151;
	font-weight: 500;
	transition: color 0.2s ease;
}
.pcw-item a:hover .pcw-num {
	color: inherit;
}
.pcw-item.pcw-active .pcw-num {
	color: inherit;
}

.pcw-count {
	margin-left: auto;
	font-size: 13px;
	color: #9ca3af;
	font-weight: 400;
}
