/**
 * quiet-bp.css — Plectra theme
 *
 * Reduces visual weight of BuddyPress notification surfaces without hiding
 * accessibility-critical indicators. All rules are scoped to BP-specific
 * parent selectors; no bare .count or global overrides.
 *
 * WCAG AA contrast maintained: no color is set below 4.5:1 against its
 * background context.
 *
 * @package plectra-theme
 */

/* ── BP notification menu count badge ──────────────────────────────────────── */
/* Reduces the red background / bold badge to a quieter inline count.           */
.bp-notifications-menu .count {
	font-size: 0.8em;
	font-weight: 400;
	opacity: 0.6;
	background: transparent;
	color: inherit;
	padding: 0;
	border-radius: 0;
	min-width: auto;
	min-height: auto;
	line-height: inherit;
	vertical-align: baseline;
}

/* ── Activity action meta ───────────────────────────────────────────────────── */
/* Keeps action links in muted ink rather than the default bright-link color.   */
.activity-meta .bp-action {
	color: #5A6068; /* mist — muted but still meets WCAG AA on cream bg */
}

.activity-meta .bp-action a {
	color: inherit;
}

/* ── Activity list header text ──────────────────────────────────────────────── */
.bp-members-activity-list .activity-header {
	color: #5A6068; /* mist */
}

.bp-members-activity-list .activity-header a {
	color: inherit;
	text-decoration: none;
}
