.saluforma-top-bar {
	background-color: var(--color-bar-bg);
	color: var(--color-bar-text);
	font-size: var(--text-xs);
	font-family: var(--font-body);
	text-align: center;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.saluforma-top-bar a {
	color: var(--color-bar-text);
	text-decoration: none;
	font-weight: 600;
}
.saluforma-top-bar a:hover {
	text-decoration: underline;
	color: var(--color-bar-text);
}
.saluforma-top-bar .top-bar-social {
	display: flex;
	gap: 12px;
	align-items: center;
}
.saluforma-top-bar .top-bar-social a {
	display: flex;
	align-items: center;
	opacity: 0.9;
	transition: opacity var(--transition);
}
.saluforma-top-bar .top-bar-social a:hover {
	opacity: 1;
}
