

/* Links
--------------------------------------------- */
a {
	color: var(--link-color);
	text-decoration: none;
	transition: all 0.25s ease;
}

a:hover,
a:focus,
a:active {
	color: var(--link-hover);
	transition: all 0.25s ease;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

.filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}
.filter-list_item {
	display: block;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--light-blue);
}
.filter-list_item:hover {
	background-color: var(--light-vblue);
	color: #fff;
}
.filter-list_item.active {
	background-color: var(--light-blue);
	color: #fff;
}