/* ================================
Tailwind Utilities
------------------
Note: This clearly isn't the full set available, but just a few to plug in the holes
in the version of Bootstrap the site was originally built with.
================================ */
.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap {
	gap: 1rem; /* 16px */
}

@media (min-width: 768px) {
	.gap-x-0 {
		column-gap: 0;
	}
}

@media (min-width: 768px) {
	.gap-y-0 {
		row-gap: 0;
	}
}

.gap-x-4 {
	column-gap: 1rem; /* 16px */
}

.gap-y-4 {
	row-gap: 1rem; /* 16px */
}

.w-full {
	width: 100%;
}

.h-full {
	height: 100%;
}

.flex {
	display: flex;
}

.justify-between {
	justify-content: space-between;
}

.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

.space-y-4 > * + * {
	margin-top: 1rem;
}

/* ================================
Typography Utilities
================================ */
.font-xxxl {
	font-size: 2.75rem;
}

.font-hero {
	font-size: 3.75rem;
	padding: 0;
	margin: 0;
}

/* ================================
Backgrounds
================================ */

.bg-cover {
	background-size: cover;
}

.bg-center {
	background-position: center center;
}

.bg-top-center {
	background-position: top center;
}