/* -------------------- MAIN -------------------- */

main {
	margin-top: 8vw;
	padding: 0 2vw;
	width: 100%;
}

#pgtitle {
	display: block;
	padding-top: 2vw;
	margin: 0;
/* */
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 4vw;
	line-height: 1;
	color: #000000;
}

#pgsubtitle {
	display: inline-block;
	padding: 1vw 0 1vw 0;
	margin: 0;
	width: 40vw;
/* */
	font-family: 'Newsreader', serif;
	font-weight: 300;
	font-size: 2vw;
	line-height: 1.2;
	color: #000000;
}

#pgbreak {
	display: block;
	height: 1vw;
	width: 100%;
/* */
	border-top: 1px solid #CCCCCC;
}

#pglink {
	float: right;
	margin-top: 4vw;
/* */
	font-family: 'JetBrains', monospace;
	font-weight: 700;
	font-size: 1vw;
	line-height: 1vw;
	color: #000000;
}

.spc {
	display: inline-block;
	width: 0.5vw;
}

/* -------------------- PAGE CONTENTS -------------------- */

#listings {
	width: 90%;
	margin: 1vw 0 8vw 4vw;
/* */
	font-family: 'Newsreader', serif;
	font-weight: 300;
	font-size: 1.5vw;
	line-height: 1.5;
	color: #000000;

}

.divider {
	margin: 4vw 0 2vw 0;
/* */
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.2vw;
	line-height: 1;
	color: #777777;
}

.rows {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
	gap: 2vw;
}

.org {
	height: 14vw;
	width: 20vw;
/* */
	color: transparent;
/* */
	box-shadow: inset 0px 5px 10px 0 rgba(0, 0, 0, 0.3);
	border-radius: 0.5vw;
}

/* -------------------- MEDIA -------------------- */

@media only screen and (max-width: 1032px) {



}

@media only screen and (max-width: 744px) and (orientation: portrait) {

	main {
		margin-top: 9vw;
	}

	#listings {
		width: 100%;
	}
	
	.divider {
		margin: 8vw 0 2vw 0;
	/* */
		font-size: 2vw;
	}

	.rows {
		gap: 4vw;
	}

	.org {
		height: 30vw;
		width: 42vw;
	}

}

/* -------------------- PRINT -------------------- */

@media print {

	* {
		display: none;
	}

}