.ws-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1em;
	margin: 1em 0;
	a {
		color: inherit;
		text-decoration: none;
		.ws-gallery-img {
			overflow: hidden;
			aspect-ratio: 1;
			img {
				object-fit: cover;
				aspect-ratio: 1;
				display: block;
				width: 100%
			}
		}
		> small {
			display: block;
			text-align: center;
			line-height: 1.2;
			margin-top: 0.1em;
			opacity: 0.8;
		}
		.ws-gallery-description {
			display: none;
		}
	}
}

.pswp__custom-caption {
	background: hsl(0 0% 0% / 0.75);
	color: #fff;
	width: calc(100% - 32px);
	max-width: 400px;
	border-radius: 4px;
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	p {
		margin: 0;
		padding: .5em;
	}
}