/*=========================
	FILTER GALLERY BLOCK
=========================*/

/* Gallery Title */
.block-filter-gallery .gallery-title {
	text-align: center;
	margin-bottom: var(--space-4);
}

/* Filter Buttons */
.block-filter-gallery .filter-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 60px;
}

.block-filter-gallery .filter-btn {
	padding: 12px 24px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.5px;
	background-color: transparent;
	border: 1px solid rgba(10, 8, 7, 0.3);
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.block-filter-gallery .filter-btn:hover {
	background-color: #000;
	border-color: #000;
	color: var(--color-n-white);
}

.block-filter-gallery .filter-btn.active {
	background-color: transparent;
	border-color: transparent;
	color: #000;
}

/* Gallery Grid */
.block-filter-gallery .gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

/* Gallery Item */
.block-filter-gallery .gallery-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.block-filter-gallery .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.block-filter-gallery .gallery-item:hover img {
	transform: scale(1.05);
}

/* No Gallery Message */
.block-filter-gallery .no-gallery {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px;
	color: rgba(10, 8, 7, 0.5);
}

/* Show More Button */
.block-filter-gallery .show-more-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.block-filter-gallery .show-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.5px;
	background-color: transparent;
	color: #000;
	border: 1px solid rgba(10, 8, 7, 0.3);
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.block-filter-gallery .show-more-btn:hover {
	background-color: #000;
	border-color: #000;
	color: var(--color-n-white);
}

.block-filter-gallery .show-more-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Responsive */
@media only screen and (max-width: 991px) {
	.block-filter-gallery .gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media only screen and (max-width: 768px) {
	.block-filter-gallery .gallery-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.block-filter-gallery .filter-buttons {
		gap: 8px;
	}

}
