/*
 * [bcc_signature] layout — flex row (photo, flex-start) + flex column
 * content (name above title). Hand-written rather than Tailwind
 * utilities: child-theme/** isn't in tailwind.config.js's `content` scan,
 * so utility classes used only here would compile to nothing in the
 * site's built CSS (see functions.php for the full note).
 */
.bcc-signature {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.bcc-signature__photo {
	width: 64px;
	height: 64px;
	border-radius: 9999px;
	object-fit: cover;
	flex-shrink: 0;
	margin-top:0;
	margin-bottom:0;
}

.bcc-signature__content {
	display: flex;
	flex-direction: column;
}

.bcc-signature__name {
	font-weight: 600;
}

.bcc-signature__title {
	font-size: 0.9em;
	opacity: 0.75;
}
