/*
 * Publication byline at the head of a dated entry. Small, muted, and set below
 * the title — it orients without competing with the article.
 */
.rc-byline {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: var(--space-1) var(--space-2);
	margin: 0 0 var(--space-5);
	font-size: var(--text-small);
	color: var(--color-text-muted);
}

.rc-byline__author {
	font-weight: var(--weight-medium);
	color: var(--color-text);
}

/*
 * The updated date is a secondary fact, separated from the byline proper by a
 * marker drawn in CSS so it never becomes a translatable fragment or lands in
 * the accessibility tree as stray punctuation.
 */
.rc-byline__updated::before {
	content: "·";
	margin-right: var(--space-2);
	color: var(--color-border-strong);
}
