.migauthorshare-block {
    background: #0b0b0b;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding: 22px 20px;
}

/* Left: avatar + name/bio */
.migauthorshare-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.migauthorshare-avatar-img {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	object-fit: cover;
	flex: 0 0 auto;
}

.migauthorshare-avatar-letter {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: #d4af37;
	color: #0b0b0b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	flex: 0 0 auto;
}

.migauthorshare-name {
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 4px;
}

.migauthorshare-bio {
	color: #ccc;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin: 0;
}

/* Right: SHARE label + icon circles */
.migauthorshare-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

.migauthorshare-label {
	color: #fff;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-right: 6px;
}

.migauthorshare-icon {
	position: relative;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid rgba( 255, 255, 255, 0.25 );
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.migauthorshare-icon:hover {
	border-color: #d4af37;
	background: rgba( 212, 175, 55, 0.1 );
}

.migauthorshare-icon svg {
	display: block;
}

/* Copy-link "Copied!" tooltip */
.migauthorshare-copied-tooltip {
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX( -50% ) translateY( 4px );
	background: #d4af37;
	color: #0b0b0b;
	font-size: 11px;
	font-weight: 200;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.migauthorshare-icon-copylink.is-copied .migauthorshare-copied-tooltip {
	opacity: 1;
	transform: translateX( -50% ) translateY( 0 );
}
