body {
	height: 100%;
	margin: 0;
	background: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

::-webkit-scrollbar {
    display: none;
}

.grid-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0;
	padding-bottom: 64px;
	aspect-ratio: 1 / 1.14204081633;
	height: fit-content;
	max-height: 90vh;
	width: 100%;
	/* transform: translateY(-5vh) */
}

.grid-container {
	width: 100%;
	aspect-ratio: 1 / 1.14204081633;
	max-width: calc(90vh/1.14204081633);
	display: grid;
	grid-template-columns: repeat(100, 1fr);
	grid-template-rows: repeat(100, 1fr);
	gap: 4px;
	max-height: 90vh;
}

.comm {
	grid-area: 1 / 44 / 31 / 100;
}
.multi {
	grid-area: 31 / 1 / 67 / 100;
}
.single {
	grid-area: 1 / 1 / 31 / 44;
}
.edu {
	grid-area: 67 / 47 / 100 / 100;
}
.unbuilt {
	grid-area: 67 / 1 / 100 / 47;
}

.grid-item {
	position: relative;
	overflow: hidden;
}

.grid-item a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.grid-item a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.grid-item a:hover img {
	transform: scale(1.02);
}

.grid-item a .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.grid-item a:hover .overlay {
	opacity: 1;
}

.grid-item a .label {
	font-family: Swiss BT;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	padding: 6px 10px;
	font-size: 1.5rem;
	text-align: center;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.grid-item a:hover .label {
	opacity: 1;
}

@media(max-width: 767px) {
	body{ 
		margin-top: 112px;
		height: calc(100vh - 112px); 
	}
	.grid-wrapper {
		max-width: 100vw;
		aspect-ratio: 1 / 1;
	}
	.grid-container {
		max-width: 100vw;
		aspect-ratio: 1 / 1;
	}
}

@media(min-width: 768px) {
	body{ 
		margin-top: 112px;
		height: calc(100vh - 112px); 
	}
}