/* O NAS */
div.about-us {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 32px;
}

div.about-us > div.two-columns {
	display: flex;
	align-items: center;
	gap: 64px;
	align-self: stretch;
}

div.about-us > div.two-columns > div.column-one {
	width: calc((100% - 64px) / 2);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	justify-content: space-around;
}

div.about-us > div.two-columns > div.column-one > img
{
	object-fit: cover;
	flex: 1 0 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 364px;
	border-radius: 32px;
}


div.about-us > div.two-columns > div.column-two {
	width: calc((100% - 64px) / 2);
	display: flex;
	padding: 32px 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	flex: 1 0 0;
}

div.about-us > div.two-columns > div.column-two > div.description > * {
	margin: 0;
}

div.about-us > div.features {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	align-self: stretch;
	flex-wrap: wrap;
}

div.about-us > div.features > div.features-box {
	display: flex;
	min-height: 56px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 100px;
	border: 3px solid var(--theme-palette-color-1);
	background: var(--theme-palette-color-9);
	padding-right: 32px;
}

div.about-us > div.features > div.features-box > div.icon {
	display: flex;
	min-width: 56px;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	aspect-ratio: 1/1;
	border-radius: 100px;
	background: var(--theme-palette-color-1);
	margin-left: -1px;
	margin-top: -1px;
	margin-bottom: -1px;
}

div.about-us > div.features > div.features-box > div.icon > span {
	line-height: normal;
}

div.about-us > div.features > div.features-box > div.description {
	color: var(--theme-palette-color-7);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
}


/* 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: 32px;
	overflow: hidden;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(4, minmax(0, 122px));
	grid-template-areas:
		"a a a b b b c c c d d d"
		"a a a b b b c c c d d d"
		"a a a e e e f f g g h h"
		"a a a e e e f f g g more more"
}

div.photo-gallery > svg.border-line {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
}


div.photo-gallery > svg.border-line > rect {
	width: calc(100% - 2px);
	height: calc(100% - 2px);
}

div.photo-gallery > .tile {
	position: relative;
	display: block;
	overflow: hidden;
	outline: none;
}

div.photo-gallery > div.tile {
	background: var(--theme-palette-color-1);
}

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

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

div.photo-gallery > img.tile--1 {
	grid-area: b;
}

div.photo-gallery > img.tile--2 {
	grid-area: c;
}

div.photo-gallery > img.tile--3 {
	grid-area: d;
}

div.photo-gallery > img.tile--4 {
	grid-area: e;
}

div.photo-gallery > img.tile--5 {
	grid-area: f;
}

div.photo-gallery > img.tile--6 {
	grid-area: g;
}

div.photo-gallery > img.tile--7 {
	grid-area: h;
}


/* Kafelek z linkiem */
div.photo-gallery > div.tile--more {
	grid-area: more;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	position: relative;
}

div.photo-gallery > div.tile--more > p {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	margin: 0;
	color: var(--theme-palette-color-6);
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
}

div.photo-gallery > div.tile--more > p > svg {
	padding: 8px;
	min-width: 34px;
	min-height: 34px;
	border-radius: 100px;
	background: var(--theme-palette-color-8);
}


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