.po-share__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: var(--po-share-justify, flex-start);
	gap: 10px;
	margin: 1em 0;
}

.po-share__label-text {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}

.po-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: var(--po-share-justify, flex-start);
	gap: var(--po-share-gap, 8px);
	margin: 0;
}

.po-share__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: calc(var(--po-share-size, 16px) * 2.2);
	height: calc(var(--po-share-size, 16px) * 2.2);
	border-radius: 50%;
	background: var(--po-share-bg-color, #f97316);
	color: var(--po-share-icon-color, #ffffff);
	text-decoration: none;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.po-share__link i {
	font-size: var(--po-share-size, 16px);
	line-height: 1;
}

.po-share__link:hover,
.po-share__link:focus-visible {
	background: var(--po-share-bg-hover, #111111);
	transform: translateY(-1px);
	color: var(--po-share-icon-color, #ffffff);
}

/* Buttons style: pill shape with visible label instead of a plain circle */
.po-share--buttons .po-share__link {
	width: auto;
	height: auto;
	padding: 8px 14px;
	border-radius: 999px;
}

.po-share--buttons .po-share__label {
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

/* Copy-link feedback state, toggled briefly via JS */
.po-share__link--copy.po-share__link--copied {
	background: #16a34a;
}
