/* GALERIA */
div.photo-gallery-box {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

div.photo-gallery {
	position: relative;
	display: grid;
	gap: 8px;
	border-radius: 64px;
	overflow: hidden;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(7, minmax(0, 392px));
	grid-auto-rows: 392px;
	grid-auto-flow:dense;
}

div.photo-gallery > .tile {
	position: relative;
	display: block;
}

div.photo-gallery > div.tile {
	display: flex;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
}

div.photo-gallery > div.tile > img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}

div.photo-gallery > div.tile > a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
}

div.photo-gallery > div.tile > span.photo-about {
	position: absolute;
	right: 32px;
	bottom: 32px;
	display: flex;
	gap: 8px;
	padding-right: 16px;
	align-items: center;
	border-radius: 100px;
	background: #FFF;
	color: #262626;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	max-width: calc(100% - 64px);
}

div.photo-gallery > div.tile > svg.circle {
	position: absolute;

	z-index: 3;
	width: 221px;
	height: 221px;
}

div.photo-gallery > div.tile > svg.circle.left {
	top: -75px;
	left: -75px;
}

div.photo-gallery > div.tile > svg.circle.right {
	bottom: -75px;
	right: -75px;
}

div.photo-gallery > div.tile > span > svg {
	padding: 3px;
}

/* Mapowanie pól */
div.photo-gallery > div.tile--0 {
	grid-area: span 2/span 3;
}

div.photo-gallery > div.tile--1 {
	grid-area: span 1/span 3;
}

div.photo-gallery > div.tile--2 {
	grid-area: span 1/span 3;
}

div.photo-gallery > div.tile--3 {
	grid-area: span 1/span 2;
}

div.photo-gallery > div.tile--4 {
	grid-area: span 1/span 2;
}

div.photo-gallery > div.tile--5 {
	grid-area: span 1/span 2;
}

div.photo-gallery > div.tile--6 {
	grid-area: span 1/span 4;
}

div.photo-gallery > div.tile--7 {
	grid-area: span 1/span 2;
}

div.photo-gallery > div.tile--8 {
	grid-area: span 1/span 3;
}

div.photo-gallery > div.tile--9 {
	grid-area: span 2/span 3;
}

div.photo-gallery > div.tile--10 {
	grid-area: span 1/span 3;
}

div.photo-gallery > div.tile--11 {
	grid-area: span 2/span 6;
}