/**
 * Unified social share / profile buttons.
 */

.bc-social-share__title {
	display: block;
	margin-bottom: 0.625rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
}

.bc-social-share__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bc-social-share__row > li {
	display: flex;
}

.bc-social-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.08);
	transition: transform 0.15s, background-color 0.15s, border-color 0.15s;
}

.bc-social-share__btn:hover {
	transform: scale(1.06);
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

/* Neutral — no per-network colors */
.bc-social-share--neutral .bc-social-share__btn,
.bc-social-share--neutral .bc-social-share__btn--telegram,
.bc-social-share--neutral .bc-social-share__btn--x,
.bc-social-share--neutral .bc-social-share__btn--whatsapp,
.bc-social-share--neutral .bc-social-share__btn--instagram,
.bc-social-share--neutral .bc-social-share__btn--youtube {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.bc-social-share--footer {
	--bc-social-btn-bg: rgba(255, 255, 255, 0.72);
	--bc-social-btn-border: rgba(51, 141, 255, 0.18);
	--bc-social-btn-color: rgb(51 65 85);
	--bc-social-btn-hover: rgba(51, 141, 255, 0.1);
	overflow: visible;
}

.bc-social-share--footer .bc-social-share__row {
	overflow: visible;
}

.dark .bc-social-share--footer {
	--bc-social-btn-bg: rgba(15, 23, 42, 0.55);
	--bc-social-btn-border: rgba(89, 173, 255, 0.22);
	--bc-social-btn-color: rgb(226 232 240);
	--bc-social-btn-hover: rgba(89, 173, 255, 0.12);
}

.bc-social-share--footer .bc-social-share__title {
	color: rgb(71 85 105);
}

.dark .bc-social-share--footer .bc-social-share__title {
	color: rgb(203 213 225);
}

.bc-social-share--footer .bc-social-share__btn,
.bc-social-share--footer .bc-social-share__btn--telegram,
.bc-social-share--footer .bc-social-share__btn--x,
.bc-social-share--footer .bc-social-share__btn--whatsapp,
.bc-social-share--footer .bc-social-share__btn--instagram,
.bc-social-share--footer .bc-social-share__btn--youtube {
	width: 2.5rem;
	height: 2.5rem;
	background: var(--bc-social-btn-bg);
	border-color: var(--bc-social-btn-border);
	color: var(--bc-social-btn-color);
	box-shadow: none;
}

.bc-social-share--footer .bc-social-share__btn:hover {
	background: var(--bc-social-btn-hover);
	border-color: var(--bc-social-btn-border);
	color: var(--bc-social-btn-color);
}
