/* AI-Badge (Kennzeichnung KI-generierter Bilder) — wird vom PictureViewHelper per AssetCollector geladen */
/* Das Label ist bewusst ein background-image (kein <img>), damit projektseitige img-Regeln
   (z. B. .bhPicture:not(.noResize) img { width: 100%; }) nicht greifen können. */
.bh-ai-badge {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    height: 24px;
    aspect-ratio: 1385 / 267;
    background: url('../Images/label-ai-generated.svg') no-repeat center / contain;
}
.bh-ai-badge--top-right {
    top: 8px;
    right: 8px;
}
.bh-ai-badge--top-left {
    top: 8px;
    left: 8px;
}
.bh-ai-badge--bottom-right {
    bottom: 8px;
    right: 8px;
}
.bh-ai-badge--bottom-left {
    bottom: 8px;
    left: 8px;
}
/* Positionierungsanker: unmittelbarer Container des Badges wird relativ */
*:has(> .bh-ai-badge) {
    position: relative;
}
