/* Hub/detail pages: keep breadcrumb + share bar below H1 (not floated like legacy .breadcrumb) */
.content-header > .toolxox-breadcrumb,
.content-header > .social-sharing {
	float: none;
	position: static;
	width: 100%;
}

.toolxox-breadcrumb {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 13px;
	line-height: 1.5;
}
.toolxox-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}
.toolxox-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	color: #666;
}
.toolxox-breadcrumb__item:not(:last-child)::after {
	content: "/";
	margin-left: 6px;
	color: #aaa;
	pointer-events: none;
}
.toolxox-breadcrumb__item a {
	color: #605ca8;
	text-decoration: none;
}
.toolxox-breadcrumb__item a:hover {
	text-decoration: underline;
}
.toolxox-breadcrumb__item span[aria-current="page"] {
	color: #333;
	font-weight: 500;
}

/* Social share bar (function/social.php) */
.social-sharing {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 8px 0 4px;
}
.social-sharing a,
.social-sharing .share-copy {
	display: inline-block;
	margin: 0 !important;
	height: 22px;
	line-height: 22px;
	border-radius: 2px;
	vertical-align: top;
	border: none;
	padding: 0;
	cursor: pointer;
	font-family: inherit;
	color: #fff;
	text-decoration: none;
	-webkit-appearance: none;
	appearance: none;
}
.social-sharing .share-copy:hover {
	color: #fff;
}
.social-sharing .share-title {
	display: inline-block;
	vertical-align: top;
	height: 22px;
	line-height: 22px;
	font-size: 12px;
}
.social-sharing .fab,
.social-sharing .fas {
	display: inline-block;
	vertical-align: top;
	padding: 0 5px 0 10px;
	font-size: 12px;
	line-height: 22px;
}
.social-sharing .share-whatsapp {
	background-color: #25d366;
}
.social-sharing .share-whatsapp:hover {
	background-color: #1da851;
	color: #fff;
}
.social-sharing .share-telegram {
	background-color: #0088cc;
}
.social-sharing .share-telegram:hover {
	background-color: #006da3;
	color: #fff;
}
.social-sharing .share-email {
	background-color: #6c757d;
}
.social-sharing .share-email:hover {
	background-color: #545b62;
	color: #fff;
}
.social-sharing .share-copy {
	background-color: #444;
	color: #fff;
}
.social-sharing .share-copy:hover {
	background-color: #222;
	color: #fff;
}
/* Override legacy 1cropper social bar spacing on site/downloader pages */
.content-header .social-sharing {
	margin-top: 4px;
}
