/**
 * Frontend styles for JW Tag SEO related-tags block.
 * Enqueued only on tag archives.
 */
.jwts-related {
	margin: 24px 0;
	padding: 16px 20px;
	background: #f6f7f7;
	border-left: 4px solid #2271b1;
	border-radius: 4px;
}
.jwts-related-title {
	margin: 0 0 10px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #1d2327;
}
.jwts-related-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.jwts-related-list li a {
	display: inline-block;
	padding: 5px 12px;
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 14px;
	text-decoration: none;
	font-size: 13px;
	color: #2c3338;
	transition: background .15s, color .15s, border-color .15s;
}
.jwts-related-list li a:hover {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}
