.c-tagCloud__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.c-tagCloud__item {
	margin: 0;
	padding: 0;
}

.c-tagCloud__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 12px;
	border: 1px solid #ddd;
	border-radius: 20px;
	background: #f7f7f7;
	color: #333;
	font-size: 13px;
	line-height: 1.6;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.c-tagCloud__link:hover {
	background: #333;
	border-color: #333;
	color: #fff;
}

.c-tagCloud__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 10px;
	background: #e0e0e0;
	color: #666;
	font-size: 11px;
	line-height: 1;
	transition: background 0.2s, color 0.2s;
}

.c-tagCloud__link:hover .c-tagCloud__count {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}
