.linove-gallery .gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.linove-gallery .gallery-item {
	margin: 0 !important;
	width: auto !important;
}

.linove-gallery img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 12px;
	transition: transform .25s ease, box-shadow .25s ease;
}

.linove-gallery a:hover img {
	transform: scale(1.03);
	box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.linove-gallery .wp-caption-text {
	display: none;
}

