/* ================================= Share ================================ */

.bb-share {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.bb-share__label {
	margin-right: 4px;
	color: var(--bb-heading);
	font-size: 14.5px;
	font-weight: 600;
}

.bb-share__link {
	--bb-brand: var(--bb-navy);

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--bb-border);
	border-radius: 999px;
	color: var(--bb-navy);
	font-size: 13.5px;
	font-weight: 600;
	transition: background-color .22s var(--bb-ease), border-color .22s var(--bb-ease),
		color .22s var(--bb-ease), transform .22s var(--bb-ease);
}

.bb-share__link .bb-icon {
	width: 16px;
	height: 16px;
}

.bb-share__link:hover {
	transform: translateY(-2px);
	background: var(--bb-brand);
	border-color: var(--bb-brand);
	color: #fff;
}

/* Icon-only mode keeps the buttons perfectly circular. */
.bb-share:not(.bb-share--labelled) .bb-share__link {
	padding: 0;
	width: 40px;
}
