/* This little section is unsetting inherited silliness like arrow-links */
p.arrow-link {
	background-image: none;
	font-size: inherit;
	line-height: inherit;
}

/* */

article {
	font-family: Arial, sans-serif;
	font-size: 1.2rem;
	margin-bottom: 1.15rem;
}

article > header > h1 {
	color: #0a79bf;
	font-family: 'Oswald', sans-serif;
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.05rem;
	margin-bottom: 0;
	padding: 1rem 0.5rem;
}

article > header > p {
	margin-bottom: 0;
	padding: 0.25rem;
}

article > header > p:not(:last-of-type) {
	color: var(--primary-color);
	font-family: 'Oswald', sans-serif;
}

article > header > p:not(:last-of-type) a {
	box-shadow: inset 0 -1px black;
}

	article > header > p:not(:last-of-type) {
		background: #0a79bf;
		color: white;
		display: inline;
		padding: 0 0 0 2rem;
		position: relative;
	}

	article > header > p + p:not(:last-of-type)::before {
		content: '•';
		font-size: 2rem;
		left: 0.75rem;
		line-height: 1.6rem;
		position: absolute;
	}

	article > header > p + p.hours-short:not(:last-of-type)::before {
		content: '@';
		font-size: 1rem;
		line-height: 1.8rem;
	}

article > header > p:last-of-type {
	margin-bottom: 0;
	padding: 0.25rem 0.5rem;
}

article > aside a:not([rel="slideshow"]),
article > main a:not(.major-link) {
	box-shadow: inset 0 -1px;
	text-shadow: -3px 1px white, -2px 1px white, -1px 1px white, 1px 1px white, 2px 1px white;
}

article section {
	border-top: 1px solid #ddd;
	max-width: 30rem;
	overflow: hidden;
	padding: 0.5rem 0;
}

article section > h1 {
	color: var(--primary-color);
	font-family: 'Oswald', sans-serif;
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.05rem;
	padding: 0.5rem;
}

article section > p {
	margin-bottom: 0;
	padding: 0 0.5rem;
}

address > p {
	font-style: normal;
	margin: 0;
	padding: 0 0.5rem;
}

/*.content-image-left, .content-image-right {
	display: none;
}*/
.content-image-left > h2,
.content-image-right > h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
}

.content-image-left > p,
.content-image-right > p {
	font-family: Georgia, 'Times New Roman', Times, serif;
}

#featured-image {
	position: relative;
}

#featured-image img {
	display: block;
	width: 100%;
}

#location-information > h2 {
	color: var(--primary-color);
	font-family: 'Oswald', sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
	padding: 0.5rem 0.5rem 0;
}

@media screen and (max-width: 31rem) {
	body > * {
		width: unset;
	}

	article > header > p:first-of-type {
		padding-left: 0.5rem;
	}
}

@supports not (display: grid) {
	@media screen and (min-width: 31rem){
		main > section {
			margin-left: 1rem;
		}
	}
}

@supports (display: grid) {
	@media screen and (min-width: 53rem) {
		article {
			display: grid;
			grid-template-columns: [title-start] 1rem [left-start] 1fr [left-end] 1rem [right-start] 23rem [right-end] 1rem [title-end];
			grid-template-rows: [title-start] minmax(min-content, max-content) [title-end] 1rem [column-start] min-content [picture-end] 1fr [column-end];
		}

		article > aside {
			grid-column: left;
			grid-row: picture-end / column-end;
		}

		article > header {
			grid-area: title;
		}

		article > main {
			grid-column: right;
			grid-row: column;
		}

		article > header > h1 {
			/*font-size: 2.2rem;*/
			padding: 2rem 2rem 0.5rem;
		}

		article > header > p:last-of-type {
			padding-left: 2rem;
		}

		article section {
			border-top: none;
			max-width: unset;
			padding: 0;
		}
		article section + section {
			margin-top: 1rem;
		}

		article section > h1 {
			font-size: 1.4rem;
			padding-left: 1rem;
		}

		article > main > section {
			border: 1px solid hsl(210, 10%, 55%);
			padding-bottom: 0.5rem;
		}
		article > main > section h1 {
			background: #0a79bf;
			color: white;
			margin-bottom: 0.5rem;
		}

		article section p {
			/*font-size: 1rem;*/
			padding-left: 1rem;
			padding-right: 1rem;
		}

		#event-flavor p + p,
		#venue-flavor p + p {
			padding-top: 1rem;
		}

		#featured-image {
			grid-column: left;
			grid-row: column-start / picture-end;
			margin-bottom: 0.5rem;
		}

		#location-information > h2 {
			padding-left: 1rem;
		}
	}
}