.tndg-pswp-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 16px 0;
}

.tndg-pswp-item {
	position: relative;
	display: block;
	width: 180px;
	height: 180px;
	overflow: hidden;
	border: 1px solid #e2e2e2;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
	background: #f7f7f7;
}

.tndg-pswp-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}

.tndg-pswp-item:hover img {
	transform: scale(1.05);
}

.tndg-pswp-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 4px 6px;
	font-size: 12px;
	line-height: 1.3;
	color: #fff;
	background: rgba(0, 0, 0, 0.55);
	opacity: 0;
	transition: opacity 0.2s ease;
	max-height: 2.6em;
	overflow: hidden;
}

.tndg-pswp-item:hover .tndg-pswp-caption {
	opacity: 1;
}

@media (max-width: 480px) {
	.tndg-pswp-item {
		width: 45vw;
		height: 45vw;
		max-width: 160px;
		max-height: 160px;
	}
}
