#page-heading
{
	font-size: 8rem;
	text-align: center;
	font-weight: 600;
}

body
{
	background-image: url("/static/assets/bg.jpeg");
	background-repeat: repeat;
}

#page-motto,
#event-motto
{
	font-family: "Montserrat", sans-serif;
}

#event-motto
{
	font-size: 2.5rem;
	margin: 0rem 1.25rem;
	text-align: center;
	font-weight: 500;
}

.events-grid
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: minmax(150px, auto);
	gap: 20px;
	padding: 20px;
}

.event-pane
{
	box-shadow:
	  0 4px 30px rgba(0, 0, 0, 0.4),
	  inset 0 1px 1px rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.1);

	backdrop-filter: blur(8px);
	border-radius: 8px;
	text-align: center;
	padding: 16px;
	transition: transform 0.3s ease;
}

.event-link { text-decoration: none; }

.event-pane:hover
{
	transform: scale(1.04);
}

.event-img
{
	width: 80%;
	height: auto;
	max-height: 80%;
	object-fit: cover;
	aspect-ratio: 16 / 9;
	display: block;
	margin: 0 auto;
	border-radius: 16px;
}

.event
{
	display: flex;
	gap: 64px;
	margin-bottom: 32px;
}

.event-info-pane
{
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
	  0 4px 30px rgba(0, 0, 0, 0.4),
	  inset 0 1px 1px rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);

	flex: 1;
	border-radius: 8px;
	padding: 16px;
}

.event:nth-child(even)
{
	flex-direction: row-reverse;
}

.event-info-pane h3
{
	font-weight: 400;
}

.info-txt
{
	margin-left: 16px;
	font-size: 1.1rem;
	font-weight: 600;
}

li
{
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.event-guidelines-pane
{
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
	  0 4px 30px rgba(0, 0, 0, 0.4),
	  inset 0 1px 1px rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(16px);

	border-radius: 8px;
	padding: 16px;
	max-width: 70rem;
}

.event-judgement-pane
{
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
	  0 4px 30px rgba(0, 0, 0, 0.4),
	  inset 0 1px 1px rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);

	flex: 1;
	border-radius: 8px;
	padding: 16px;
	max-width: 24rem;
}

.event-info-aside div
{
	margin-bottom: 16px;
	margin-left: 16px;
}

.event-judgement-criterion
{
	background-color: rgba(42, 28, 64, 0.65);
	border-radius: 16px;
	padding: 16px;
	text-align: center;
	backdrop-filter: blur(16px);
}

@media screen and (max-width: 767px)
{
	.events-grid
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
