.engajae-gallery {
	display: flex;
	align-items: stretch;
	gap: 16px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.engajae-gallery-thumbs {
	flex: 0 0 100px;
	width: 100px;
	max-width: 100px;
	overflow: hidden;
}

.engajae-gallery-thumbs .swiper-wrapper,
.engajae-gallery-main .swiper-wrapper {
	max-width: 100%;
	max-height: 100%;
}

.engajae-gallery-thumbs .swiper-slide {
	width: 100px !important;
	height: 100px !important;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e2e2e2;
	opacity: 0.6;
	cursor: pointer;
	transition: opacity 0.2s, border-color 0.2s;
}

.engajae-gallery-thumbs .swiper-slide img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.engajae-gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-color: #ea6410;
}

.engajae-gallery-main-frame {
	flex: 1 1 0%;
	min-width: 0;
	position: relative;
	overflow: hidden;
}

.engajae-gallery-main-frame::before {
	content: '';
	display: block;
	padding-top: 100%;
}

.engajae-gallery-main {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.engajae-gallery-main .swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.engajae-gallery-main .swiper-zoom-container {
	width: 100%;
	height: 100%;
}

.engajae-gallery-main .swiper-zoom-container img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.engajae-gallery-main .swiper-button-prev,
.engajae-gallery-main .swiper-button-next {
	color: #ea6410;
	background: rgba(255, 255, 255, 0.85);
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.engajae-gallery-main .swiper-button-prev::after,
.engajae-gallery-main .swiper-button-next::after {
	font-size: 16px;
	font-weight: bold;
}

@media (max-width: 768px) {
	.engajae-gallery {
		flex-direction: column-reverse;
	}

	.engajae-gallery-thumbs {
		flex-basis: 100px;
		width: 100%;
		height: 100px;
	}
}