.gallery-layout {
	overflow: hidden;
}

.gallery-layout .gallery-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 3rem;
	text-align: center;
	justify-content: center;
}

.gallery-layout .gallery-icon img {
	width: 2.5em;
	height: auto;
	max-width: 80px;
	margin-bottom: 0.3em;
}

.gallery-layout .gallery-header .pk-heading {
	margin: 0;
}

.gallery-layout .gallery-slider {
	position: relative; 
	z-index: 1;
}

.site-3 .gallery-layout .gallery-slider > div {
	transform: rotate(-2deg);
}

.gallery-layout .swiper-wrapper {
	align-items: center;
}

.gallery-layout .gallery-slider img {
	aspect-ratio: 1/1;
	width: 100%; 
	height: auto;
	object-fit: cover;
}

.gallery-layout .swiper-slide.landscape img {
	aspect-ratio: 4/3;
}

.gallery-layout .swiper-slide.portrait img {
	aspect-ratio: 1/1;
}

.gallery-slider .swiper-container:hover + .swiper-mouseover {
	opacity: 1; 
	visibility: visible;
}

.gallery-layout .swiper-mouseover {
	padding: 5px;
	position: fixed; 
	top: 0; 
	left: 0; 
	z-index: 123; 
	opacity: 0; 
	visibility: hidden;
	color: #ffffff; 
	pointer-events: none; 
	user-select: none; 
	background-color: #000000;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
	.gallery-layout .swiper-slide.landscape img {
		aspect-ratio: 1/1;
	}
	
	.swiper-mouseover {
		display: none;
	}
}