/* ==========================================================================
   Realizacja
   ========================================================================== */

.single__content .text {
	margin: 2.4rem 0 3.2rem 0;
}

.single__gallery {
	position: relative;
	width: 100%;
	padding-bottom: 4rem;
}

@media (min-width: 1200px) {
	.single__gallery {
		margin-top: 0;
	}
}

.single-gallery-swiper {
	width: 100%;
	padding-bottom: 1rem; 
}

.single-gallery-swiper .swiper-slide {
	position: relative;
	border-radius: var(--radius-3, 16px);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.single-gallery-swiper .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
}

.single-gallery-swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.single-gallery-swiper .zoom-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	background-color: var(--color-1);
	color: #fff;
	width: 6.4rem;
	height: 6.4rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}

.single-gallery-swiper .swiper-slide:hover img {
	transform: scale(1.05);
}

.single-gallery-swiper .swiper-slide:hover .zoom-icon {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.single-gallery-swiper .zoom-icon svg {
	height: 3.2rem;
	fill: var(--white-1);
}

.single__gallery .swiper-pagination {
	bottom: 0rem;
	text-align: start;
}

.single__gallery .swiper-pagination-bullet {
	background-color: var(--font-color-1);
	border-radius: 0;
	height: .4rem;
	width: 2.4rem;
	transition: .3s ease;
}

.single__gallery .swiper-pagination-bullet-active {
	background-color: var(--color-1);
}