.my-popup-module {
	position: relative;
	background-size: cover;
	background-position: center;
	width: 100%;
	padding-top: 56.25%;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.my-popup-overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.1);
}

.my-popup-header {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: white;
	background-color: rgba(0,0,0,0.6);
	padding: 8px 12px;
	font-size: 1.2em;
	border-radius: 4px;
}

.custom-lightbox {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.85);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	flex-direction: column;
	padding: 20px;
	box-sizing: border-box;
}

.lightbox-content {
	position: relative;
	width: 100%;
	max-width: 800px;
}

.lightbox-main {
	text-align: center;
	margin-bottom: 10px;
}

.lightbox-slide {
	max-height: 60vh;
	width: auto;
	max-width: 100%;
}

.lightbox-thumbnails {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.lightbox-thumb {
	height: 60px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border 0.2s ease;
}

.lightbox-thumb:hover {
	border: 2px solid white;
}

.lightbox-close {
	position: absolute;
	top: 10px; right: 20px;
	font-size: 2rem;
	color: white;
	cursor: pointer;
	z-index: 1000;
}

@media (max-width: 600px) {
	.lightbox-thumb {
		height: 40px;
	}
}

.lightbox-caption {
	color: white;
	text-align: center;
	margin-top: 10px;
	font-size: 1.1em;
}
