/*
 * 湖南市お知らせ機能 (konan-news-tools)
 * news個別記事ページの分類タグ表示用CSS (Phase 4.9A)
 *
 * 対象: .knt-news-tags (タグを囲むブロック) / .knt-news-tag (タグ1件、<a>要素)
 * テーマ固有色を強制し過ぎないよう、控えめな配色に留める。!important・
 * 固定幅は使用しない。狭い画面でも横並び→自然な折り返しで崩れない。
 */

.knt-news-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em;
	margin: 0 0 1.25em;
	padding: 0;
	line-height: 1.6;
}

.knt-news-tag {
	display: inline-block;
	padding: 0.25em 0.85em;
	border-radius: 999px;
	background-color: #eef3f8;
	color: #2c5282;
	font-size: 0.85em;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.knt-news-tag:hover,
.knt-news-tag:focus {
	background-color: #2c5282;
	color: #ffffff;
	text-decoration: none;
}
