/* GT Lightbox Enhancements — fading alt-text caption overlay */

.gt-lbe-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 14px 20px;
	color: #ffffff;
	font-family: "LieblingPro", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: 5;
}

.gt-lbe-caption.gt-lbe-visible {
	opacity: 1;
}

/* Desktop GT Lightbox: anchor the caption to the image wrapper. */
#gt-lightbox-img-wrap {
	position: relative;
}

/* Mobile inline gallery: anchor the caption to the gallery container itself,
   so it overlays whichever slide is currently scrolled into view. */
aside.artist-images {
	position: relative;
}
