.ws-gallery-cover {
	margin: 0;
	a {
		display: block;
		color: inherit;
		text-decoration: none;
		&.is-hidden {
			display: none;
		}
		.ws-gallery-cover-img {
			overflow: hidden;
			aspect-ratio: 16 / 9;
			border-radius: var(--corner-radius);
			img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform 0.4s ease;
			}
			&:hover img {
				transform: scale(1.04);
			}
		}
		.ws-gallery-description {
			display: none;
		}
	}
	.ws-gallery-cover-button {
		display: block;
		width: fit-content;
		margin: 1rem auto 0;
	}
}

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