.wkvn-gallery {
	display: grid;
	grid-template-columns: repeat(var(--cols, 4), 1fr);
	gap: 12px;
}

/* =========================
   TABLET (Elementor)
   ========================= */
@media (max-width: 1024px) {
	.wkvn-gallery {
		grid-template-columns: repeat(var(--cols-tablet, var(--cols)), 1fr);
	}
}

/* =========================
   MOBILE (Elementor)
   ========================= */
@media (max-width: 767px) {
	.wkvn-gallery {
		grid-template-columns: repeat(var(--cols-mobile, var(--cols-tablet)), 1fr);
	}
}

/* Gallery item */
.wkvn-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

/* ❗ Không dùng display:none → phá lightbox */
.wkvn-item.is-hidden {
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}

/* Load more */
.wkvn-load-more {
	margin-top: 16px;
	padding: 10px 20px;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #fff;
}