/* Urheberrechtsangabe — Gallery Copyright (com.amp.gallerycopyright) */

/* Variante A: Overlay am unteren Bildrand */
.ampGalleryCopyrightHost {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.ampGalleryCopyright--overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 100%;
	padding: 4px 10px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 0.85em;
	line-height: 1.4;
	text-align: right;
	border-top-left-radius: var(--wcfBorderRadius);
	pointer-events: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Variante: Overlay nur bei Mouseover einblenden */
.ampGalleryCopyright--hover {
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
}

.ampGalleryCopyrightHost:hover .ampGalleryCopyright--hover,
.ampGalleryCopyrightHost:focus-within .ampGalleryCopyright--hover {
	opacity: 1;
}

/* Geräte ohne Hover (Touch): Angabe dauerhaft anzeigen */
@media (hover: none) {
	.ampGalleryCopyright--hover {
		opacity: 1;
	}
}

/* Variante B: Separate Zeile unter dem Bild */
.ampGalleryCopyright--line {
	margin-top: 5px;
	color: var(--wcfContentDimmedText);
	font-size: 0.85em;
	text-align: center;
}
