/**
 * MastahSEO frontend styles.
 *
 * Entity reference pills (Wikipedia, Wikidata, Google KG) rendered below the
 * tag description on tag archive pages. Mirrors the theme's post-tag pills and
 * reuses the same CSS custom properties so it inherits the active theme's
 * colors when they are defined, with sensible fallbacks otherwise.
 */

.mastahseo-entity-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	margin-bottom: 0;
}

.mastahseo-entity-links__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-mute, #888);
	margin-right: 2px;
}

.mastahseo-entity-links__item {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-soft, #444);
	background: var(--bg-soft, #f2f2f2);
	border-radius: 32px;
	padding: 5px 14px;
	text-decoration: none;
	transition: color var(--transition, 0.2s), background var(--transition, 0.2s);
}

.mastahseo-entity-links__item:hover,
.mastahseo-entity-links__item:focus {
	color: #fff;
	background: var(--accent, #2563eb);
}
