/* Akel Gallery Tab */

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

.akel-gallery-filter button {
	background-color: #fff;
	border: 1px solid #e6e6e6;
	color: #0e0e0e;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	padding: 13px 26px;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.akel-gallery-filter button:hover {
	background-color: #f2f2f2;
	border-color: #f2f2f2;
	color: #0e0e0e;
}

.akel-gallery-filter button.active {
	background-color: #ededed;
	border-color: #ededed;
	color: #0e0e0e;
}

/* ---- Grid ---- */
.akel-gallery-grid {
	--bs-gutter-y: 50px;
}

/* ---- Item ---- */
.akel-gallery-thumb {
	overflow: hidden;
	border-radius: 16px;
	margin-bottom: 22px;
	aspect-ratio: 1 / 1;
}

.akel-gallery-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.akel-gallery-box:hover .akel-gallery-thumb img {
	transform: scale(1.06);
}

.akel-gallery-title {
	margin: 0 0 8px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: #0e0e0e;
}

.akel-gallery-desc {
	display: block;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #8a8a8a;
}

.akel-gallery-sep {
	margin: 0 2px;
}

/* ---- Filter animation ---- */
.akel-gallery-item.akel-hide {
	display: none;
}

@keyframes akelFadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.akel-gallery-item.akel-animate {
	animation: akelFadeUp 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* ---- Responsive ---- */
@media (max-width: 575px) {
	.akel-gallery-title {
		font-size: 22px;
	}
}
