/**
 * BW Dev — Subtitle block. Eyebrow / kicker text styling.
 *
 * Color is applied per-block via inline style on the inner element. Alignment
 * is applied as a wrapper modifier class. font-family falls back through
 * Inter → system stack so the subtitle stays clean even when the theme has
 * no opinion about typography.
 */
.bw-dev-subtitle-wrapper {
	display: block;
}
.bw-dev-subtitle-wrapper--left   { text-align: left; }
.bw-dev-subtitle-wrapper--center { text-align: center; }
.bw-dev-subtitle-wrapper--right  { text-align: right; }

.bw-dev-subtitle {
	font-family: "Inter", "Inter var", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 0;
	line-height: 1.4;
}

a.bw-dev-subtitle {
	text-decoration: none;
	color: inherit;
}
a.bw-dev-subtitle:hover,
a.bw-dev-subtitle:focus {
	text-decoration: none;
	color: inherit;
	opacity: 0.85;
}
