/**
 * ie24 — Bannières « créatif » (documents HTML servis en iframe).
 * L'iframe est à taille fixe (data-adw × data-adh) ; on la met à l'échelle
 * proportionnellement pour tenir dans la colonne (mobile inclus). La hauteur est
 * réservée par aspect-ratio (posé en ligne selon le format).
 */
.lj-ad--creative {
	text-align: center;
}
/* Libellé « Publicité » cliquable → page « Annoncer sur le site ». */
a.lj-ad-label--link {
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}
a.lj-ad-label--link:hover,
a.lj-ad-label--link:focus-visible {
	color: var(--accent, #8a1711);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.lj-ad-frame {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.lj-ad-frame iframe {
	display: block;
	border: 0;
	transform-origin: top left;
	transform: scale(var(--ad-scale, 1));
}
