/* ==========================================================================
   Irodahaz Gallery — main image + thumbnail strip
   ========================================================================== */

.brxe-irodahaz-gallery {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

/* --- Main image --------------------------------------------------------- */
.om-gallery-main {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	cursor: zoom-in;
	background: #f5f5f5;
	aspect-ratio: 16 / 10;
}

.om-gallery-main img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.2s ease;
}


/* --- Thumbnail strip ---------------------------------------------------- */
.om-gallery-thumbs {
	display: flex;
	gap: 8px;
}

.om-gallery-thumb {
	flex: 1 1 0%;
	min-width: 0;
	height: 160px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.2s ease;
}

.om-gallery-thumb:hover {
	opacity: 0.8;
}

.om-gallery-thumb.active {
	opacity: 1;
}

.om-gallery-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
