/* Swiper Gallery block — frontend + editor */
.favo-swiper-gallery {
	width: 100%;
	max-width: 800px;
	margin: 24px auto;
	position: relative;
	overflow: hidden;
}
.favo-swiper-gallery.alignwide {
	max-width: 1120px;
}
.favo-swiper-gallery.alignfull {
	max-width: 100%;
}
.favo-swiper-gallery .swiper-container {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding-bottom: 30px;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
}
.favo-swiper-gallery .swiper-wrapper {
	width: 100%;
	box-sizing: border-box;
}
.favo-swiper-gallery .swiper-slide {
	width: 100%;
	flex-shrink: 0;
	box-sizing: border-box;
}
.favo-swiper-gallery .swiper-slide img {
	display: block;
	width: 100%;
	height: 400px;
	object-fit: cover;
	margin: 0;
}
@media (max-width: 767px) {
	.favo-swiper-gallery .swiper-slide img {
		height: 240px;
	}
}
.favo-swiper-gallery .swiper-button-prev,
.favo-swiper-gallery .swiper-button-next {
	color: #fff !important;
	opacity: 1 !important;
	transform: scale(0.7);
	top: calc(50% - 15px);
}
.favo-swiper-gallery .swiper-pagination {
	bottom: 6px;
}
.favo-swiper-gallery .swiper-pagination-bullet-active {
	background: #ff8c82;
}

/* Editor-only thumbnail grid */
.favo-swiper-gallery-thumbs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.favo-swiper-gallery-thumb {
	position: relative;
	width: 120px;
	height: 80px;
	border-radius: 4px;
	overflow: hidden;
}
.favo-swiper-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
