@charset "utf-8";
/* CSS Document */

:root {
	/* Color Variables */
	--text-light-1: #ffffff;
	--text-dark-1: #181818;
	--dark-1: #000000;
	--mid-1: #727272;
}

.header {
	height: 80px;
	width: 100%;
	background-color: var(--dark-1);
	background-image: url("../images/pngs/background3.png");
	background-size: cover;
	margin-bottom: 20px;
}

.header-title {
	display: flex;
	font-family: 'Outfit';
	color: var(--text-light-1);
	padding-left: calc(20% + .55in);
	font-size: 20pt;
	padding-top: 15px;
}

.header-subtitle {
	display: flex;
	color: var(--text-light-1);
	padding-left: calc(20% + .55in);
	font-size: 10pt;
	font-weight: 300;

}

.container {
	padding-left: calc(20% + .525in);
	padding-right: calc(20% + .525in);
}

.published-date {
	font-weight: 400;
}

* {
	margin: auto;
	padding: 0;
	box-sizing: border-box;
	transition: 0.1s ease-in-out;
	font-family: 'Work Sans';
	font-weight: 500;
/*	max-width: 1300px;*/
	font-size: 11pt;
	line-height: 1.25;
	color: var(--text-dark-1);
}

.image-container {
    display: grid;
	grid-template-rows: repeat(auto-fit,minmax(30%,1fr));
	grid-template-columns: repeat(auto-fit,minmax(30%,1fr));
	grid-gap: 5px 10px;
	padding-top: .25in;
	padding-bottom: .25in;
}

.image-container img {
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
}

img {
	width: 100%;
	padding-top: .25in;
	padding-bottom: .25in;
}

h1 {
	font-weight: 700;
	font-size: 30pt;
	line-height: 1.5; 
}

h2 {
	font-weight: 600;
	font-size: 14pt;
	line-height: 2;
}

.h2-alt {
	font-weight: 500;
	font-size: 14pt;
	line-height: 1.4;
}

.captioned p {
	font-style: italic;
	padding-bottom: 1.5em;
}

.captioned img {
	padding-bottom: 0;
}

.captioned .image-container {
	padding-bottom: 0;
}


@media(max-width: 990px) {
	.container {
	padding-left: .25in;
	padding-right: .25in;
}
	.header-title {
		padding-left: .25in;
		padding-right: .25in;
	}
	.header-subtitle {
		padding-left: .25in;
		padding-right: .25in;
	}
}