.mv-categories-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mv-categories-list li + li {
	margin-top: 6px;
}

.mv-categories-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 0;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid var(--border-color);
	transition: color .2s ease;
}

.mv-categories-item:hover {
	color: var(--brand-primary);
}

.mv-categories-body {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.mv-categories-name {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}

.mv-categories-count {
	margin-left: auto;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 600;
}

.mv-categories-item .fa-chevron-right {
	color: var(--text-muted);
	font-size: 11px;
	opacity: .6;
	transition: transform .2s ease;
}

.mv-categories-item:hover .fa-chevron-right {
	transform: translateX(3px);
}

.mv-categories-widget {
	display: grid;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
	gap: 16px;
}

.mv-categories-header {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--mv-border);
}

.mv-categories-header h3 {
	margin: 0;
	color: var(--mv-text);
	font-size: 16px;
	font-weight: 850;
	line-height: 1.25;
	letter-spacing: -.02em;
}

.mv-categories-item.is-active {
	color: var(--brand-primary);
}

.mv-categories-item.is-active .mv-categories-name {
	font-weight: 700;
}

.mv-categories-item.is-active .fa-folder,
.mv-categories-item.is-active .fa-chevron-right,
.mv-categories-item.is-active .mv-categories-count {
	color: var(--brand-primary);
}
