/*
Theme Name: Seven Blog Child
Template: seven-blog
Version: 1.0.0
Text Domain: seven-blog-child
Description: Child theme of Seven Blog: single publish date in post meta + minor CSS.
*/

/* ---- Category links styled as pill badges ---- */
.cat-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.cat-links a {
	display: inline-block;
	padding: 2px 12px;
	border-radius: 999px;
	background-color: #0a7d5a;
	color: #ffffff;
	font-size: 0.72em;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.7;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.cat-links a:hover,
.cat-links a:focus {
	background-color: #085f45;
	color: #ffffff;
}
