/* Eleveight Gallery — Filter + Grid styles */

/* Filter pill tabs */
.eleveight-gallery-filter {
	margin-bottom: 28px;
}
.eleveight-gallery-filter li a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 8px 18px;
	border-radius: 50px;
	color: #444;
	border: 1px solid #ddd;
	background: #fff;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
}
.eleveight-gallery-filter li a:hover {
	border-color: #c9a961;
	color: #c9a961;
}
.eleveight-gallery-filter li.uk-active a {
	background: #c9a961;
	border-color: #c9a961;
	color: #fff;
}

/* Thumbnail cells — uniform height, object-fit crop */
.eleveight-gallery-thumb {
	overflow: hidden;
	border-radius: 6px;
	aspect-ratio: 4/3;
	background: #f0ede8;
}
.eleveight-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}
.eleveight-gallery-grid a:hover .eleveight-gallery-thumb img {
	transform: scale(1.04);
}

/* Fade transition when filtering */
.eleveight-gallery-grid > [hidden] {
	display: none;
}
