<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.image-gallery-block {
	margin: 80px 0;
	text-align: center;
}

.image-gallery-block .headline {
	margin-bottom: 30px;
}

.image-gallery-block .image-gallery .row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(8, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	margin-bottom: 10px;
	height: 60vh;
}

.image-gallery-block .image-gallery .row a {
	position: relative;
	display: block;
}

.image-gallery-block .image-gallery .row a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-gallery-block .image-gallery .row.count-4 a:nth-child(1) { grid-area: 1 / 1 / 5 / 4; }
.image-gallery-block .image-gallery .row.count-4 a:nth-child(2) { grid-area: 1 / 4 / 4 / 7; }
.image-gallery-block .image-gallery .row.count-4 a:nth-child(3) { grid-area: 5 / 1 / 9 / 4; }
.image-gallery-block .image-gallery .row.count-4 a:nth-child(4) { grid-area: 4 / 4 / 9 / 7; }

.image-gallery-block .image-gallery .row.count-3 a:nth-child(1) { grid-area: 1 / 1 / 5 / 4; }
.image-gallery-block .image-gallery .row.count-3 a:nth-child(2) { grid-area: 5 / 1 / 9 / 4; }
.image-gallery-block .image-gallery .row.count-3 a:nth-child(3) { grid-area: 1 / 4 / 9 / 7; }

.image-gallery-block .image-gallery .row.count-2 a:nth-child(1) { grid-area: 1 / 1 / 9 / 3; }
.image-gallery-block .image-gallery .row.count-2 a:nth-child(2) { grid-area: 1 / 3 / 9 / 7; }

.image-gallery-block .image-gallery .row.count-1 a:nth-child(1) { grid-area: 1 / 1 / 9 / 7; }


@media (max-width:700px) {

	.image-gallery-block .image-gallery .row {display:block; height:auto;}
	.image-gallery-block .image-gallery .row a {margin-bottom:15px;}
	.image-gallery-block .image-gallery .row a img {height:auto; object-fit:none; display:block; position:relative;}

}</pre></body></html>