.kag-gallery {
	margin: 1.25rem 0 1.75rem;
	border-radius: 12px;
	overflow: hidden;
	background: #111;
	color: #fff;
}
.kag-gallery-stage {
	position: relative;
	min-height: 220px;
	background: #111;
}
.kag-gallery .kag-slide {
	display: none;
	margin: 0;
	text-align: center;
}
.kag-gallery .kag-slide.is-active {
	display: block;
}
.kag-gallery .kag-slide img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: contain;
	margin: 0 auto;
	background: #111;
}
.kag-gallery .kag-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(0,0,0,.55);
	color: #fff;
	font-size: 28px;
	line-height: 38px;
	cursor: pointer;
}
.kag-gallery .kag-prev { left: 10px; }
.kag-gallery .kag-next { right: 10px; }
.kag-gallery .kag-counter {
	position: absolute;
	right: 12px;
	bottom: 10px;
	background: rgba(0,0,0,.6);
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 12px;
}
.kag-thumbs {
	display: flex;
	gap: 6px;
	padding: 8px;
	overflow-x: auto;
	background: #1b1b1b;
}
.kag-thumb {
	flex: 0 0 72px;
	height: 52px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	background: none;
	cursor: pointer;
}
.kag-thumb.is-active {
	border-color: #fff;
}
.kag-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
