.post-tags-pills-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.post-tag-pill-item {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.post-tag-pill {
	display: inline-flex;
	align-items: center;
	background-color: #f1f1f1;
	color: #333;
	padding: 5px 15px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, border-width 0.3s ease, opacity 0.3s ease;
}

.post-tag-pill:hover {
	opacity: 0.8;
}

.post-tag-pill:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.post-tag-count {
	margin-left: 5px;
	font-size: 0.9em;
	opacity: 0.7;
}
