.et_pb_column:has(.source:hover),
.et_pb_column:has(.source:focus) {
	z-index: 1000;
}

.source {
	position: relative;
	display: inline-flex;
	anchor-name: --source-icon;
	anchor-scope: --source-icon;
	z-index: 100;
}

/* Icône en exposant */
.source__icon {
	color: inherit;
	display: inline-flex;
	vertical-align: super;
	position: relative;
	top: 0;
	line-height: 0;
}

/* Bulle masquée par défaut */
.source__bubble {
	position: fixed;
	position-anchor: --source-icon;
	position-area: right;
	position-try-fallbacks: flip-inline;
	margin-inline-start: 10px;
	min-width: 150px;
	max-width: 250px;
	background: #2D2D5F;
	color: #fff!important;
	font-size: 12px;
	line-height: 1.4;
	padding: 12px 16px;
	border-radius: 12px;
	text-align: left;
	display: none;
	transition: opacity .2s ease, visibility .2s ease;
	z-index: 10;
	border: 1px solid #EEE;
}

/* Affichage au survol ET au focus (clavier/tap) */
.source:hover .source__bubble,
.source:focus .source__bubble {
	display: block;
}
