/* BXB Image Trail - Frontend Styles */

.bxb-image-trail-container {
	position: relative;
	width: 100%;
	background: transparent;
	overflow: visible;
}

.bxb-image-trail-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.bxb-image-trail-content {
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bxb-content__img {
	max-width: 250px;
	height: 350px;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

/* Ensure the container captures mouse events */
.bxb-image-trail-container * {
	pointer-events: none;
}

.bxb-image-trail-container {
	pointer-events: auto;
}