/**
 * Gallery element (voget_gallery).
 *
 * Only the "Plain" hover style is styled here. It is rendered on top of Salient's
 * image_grid `gallery_style="2"` output (`.portfolio-items[data-ps="2"]`,
 * `.work-item.style-2`) and strips all hover chrome so the thumbnail stays bare.
 * The full-cover `a.pretty_photo` inside `.work-info` is kept intact — that is the
 * lightbox trigger Salient's JS binds to.
 *
 * The "Meta" style (`.voget-gallery--meta`, gallery_style="1") is left untouched.
 */

.voget-gallery--plain .portfolio-items .col .work-item .work-info-bg,
.voget-gallery--plain .portfolio-items .col .work-item .work-info .vert-center {
	display: none !important;
}

.voget-gallery--plain .portfolio-items .col .work-item .work-info {
	background: none !important;
	opacity: 1 !important;
}

/* Keep the whole thumbnail clickable for the lightbox. */
.voget-gallery--plain .portfolio-items .col .work-item .work-info > a {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

/* Neutralise any image zoom / transition on hover. */
.voget-gallery--plain .portfolio-items .col .work-item img,
.voget-gallery--plain .portfolio-items .col:hover .work-item img {
	transform: none !important;
	transition: none !important;
	filter: none !important;
}

/* No leftover meta row under the thumb in Plain mode. */
.voget-gallery--plain .portfolio-items .col .work-meta {
	display: none !important;
}
