/**
 * Blog-only presentation: byline and tag pills. Loaded conditionally by
 * inc/enqueue.php, never on tool CPT templates.
 *
 * Boundary: cross-cutting listing chrome (card grid, badges, archive
 * headings, pagination) lives in main.css since archive-tool.php needs it
 * too — this file holds only what's specific to blog posts.
 */

.entry-byline {
	color: var( --color-text-muted );
	font-size: 0.9rem;
}

.entry-tags {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: var( --space-1 );
	padding: 0;
	margin: var( --space-3 ) 0 0;
}

.entry-tags a {
	text-decoration: none;
	background-color: var( --color-surface );
	border: 1px solid var( --color-text-muted );
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	font-size: 0.85rem;
}
