/*!
Theme Name: ASU Labs Theme
Theme URI: https://github.com/asuengineering/asu-labs-theme
Author: Steve Ryan (ASU Engineering)
Author URI: https://engineering.asu.edu
Description: A theme for WordPress to help build and organize small group websites. Ideal for engineering "lab" groups on campus.
Version: 2.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: asufaculty

GitHub Theme URI: https://github.com/asuengineering/asu-labs-theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

The ASU Labs theme is based on Underscores https://underscores.me/

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/* CSS Grid Layout for the whole site. */
#page {
	display: grid;
	grid-template-areas: "navigation content";
	grid-template-columns: 300px 1fr;
	grid-template-rows: 1fr;
	grid-gap: 0;
}

#masthead {
	grid-area: navigation;
	z-index: 1000;
	/* so the menu or its navicon stays above all content */
	background: #353535;
}

#content {
	grid-area: content;
}

#mobile-header {
	grid-area: mobile-header;
	background: #353535;
	display: none;
}

#mobile-title {
	grid-area: mobile-title;
	background: #8c1d40;
	display: none;
}

/* Collapse everything into a single columm */
@media (min-width: 0) and (max-width: 990px) {
	#page {
		grid-template-areas: "mobile-header" "mobile-title" "content";
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr auto;
	}

	#mobile-header,
	#mobile-title {
		display: grid;
	}

	#masthead {
		position: fixed;
		/* or choose `absolute` depending on desired behavior*/
		top: 0;
		bottom: 0;
		width: 300px;
		left: -340px;
		transition: transform 0.3s ease-in-out;
		box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.85);
	}

	#masthead:target {
		transform: translateX(340px);
	}

	#masthead a.toggle.close {
		display: block;
	}

	#masthead .site-branding,
	#masthead .endorsed-logo {
		display: none;
	}

	#masthead #menu {
		margin-top: 50px;
	}
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html,
button,
input,
select,
optgroup,
textarea,
.pure-g [class*="pure-u"] {
	color: #2a2a2a;
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.44;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
	line-height: 1.44;
	font-weight: bold;
}

h1 {
	font-size: 60px;
	line-height: 1;
	font-weight: 900;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

p {
	margin-bottom: 1.5em;
	font-size: 18px;
	font-weight: 300;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.44;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

#sitename-wrapper {
	padding: 0 0 12px 10px;
	font-size: 24px;
}

#sitename-wrapper a {
	color: #666666;
	font-weight: bold;
	white-space: nowrap;
	text-decoration: none;
	border-bottom: none;
	transition: none;
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: -0.5px;
	line-height: 1;
	margin-top: 5px;
	overflow: hidden;
}

#sitename-wrapper #parent-site {
	color: #2a2a2a;
}

#sitename-wrapper #parent-site:hover,
#sitename-wrapper #current-site:hover {
	color: #d23153;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
.content-area a {
	color: #8c1d40;
	border-bottom: 1px dotted #8c1d40;
	text-decoration: none;
	transition: all 0.25s ease-in-out 0s;
}

.content-area a:visited {
	color: #d23153;
}

.content-area a:hover,
.content-area a:focus,
.content-area a:active {
	color: #d23153;
}

.content-area a:focus {
	outline: thin dotted;
}

.content-area a:hover,
.content-area a:active {
	outline: 0;
}

.content-area .wp-block-button a {
	color: #ffffff;
}

.archive #content h2.entry-title a:visited,
.archive #content h2.entry-title a:hover,
.archive #content h2.entry-title a:focus,
.archive #content h2.entry-title a:active {
	color: #8c1d40;
}

.post-type-archive-person #content h2.entry-title a:visited,
.post-type-archive-person #content h2.entry-title a:hover,
.post-type-archive-person #content h2.entry-title a:focus,
.post-type-archive-person #content h2.entry-title a:active {
	color: #ffffff;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#masthead {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
}

#masthead .site-header {
	flex: 0 1 auto;
	margin-top: 20px;
}

#masthead .site-footer {
	flex: 0 1 auto;
}

#masthead .custom-logo-link {
	display: block;
}

#masthead .custom-logo {
	margin: 0 auto;
	display: block;
}

#masthead .site-title {
	font-size: 1.5em;
	font-weight: 500;
	background-color: #8c1d40;
	padding: 10px 20px;
	margin: 0.75em -0.25em 0 0;
}

#masthead .site-title a {
	color: #ffffff;
	text-decoration: none;
}

#masthead .site-description {
	margin: 0 -0.25em 0 0;
	color: #333333;
	background-color: #ffc627;
	font-size: 120%;
	font-weight: 500;
	padding: 5px 20px;
}

#content.dimmed {
	position: relative;
	transition: background-color 1s ease;
}

#content.dimmed:after {
	content: " ";
	z-index: 10;
	display: block;
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
}

#mobile-header .container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

#mobile-header .container .mobile-logo {
	flex: 0 1 auto;
	height: 50px;
	margin-left: -10px;
}

#mobile-header .container .hamburger {
	top: 0;
	right: 15px;
	position: absolute;
}

#mobile-title .container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

#mobile-title .site-title {
	margin: 0.5em 0;
	line-height: 1;
}

#mobile-title .site-title a {
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
}

a.toggle.close {
	color: #000000;
	font-weight: 700;
	background-color: #ffffff;
	padding: 0.5em;
	text-decoration: none;
	position: absolute;
	right: -5px;
	top: 5px;
	display: none;
}

a.toggle.close svg {
	margin-right: 5px;
}

/* Navigation Styling, from PureCSS */
#menu {
	/* All anchors inside the menu should be styled like this. */
	/* Remove all background/borders, since we are applying them to #menu. */
}

#menu .pure-menu-active>.pure-menu-link,
#menu .pure-menu-link:focus,
#menu .pure-menu-link:hover {
	background-color: #000000;
}

#menu a {
	color: #f1f1f1;
	border: none;
	padding: 0.6em 0 0.6em 1em;
	font-size: 16px;
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 500;
	white-space: normal;
}

#menu .pure-menu {
	border: none;
	background: transparent;
	/*  For top level, active links */
}

#menu .pure-menu ul {
	border: none;
	background: transparent;
}

#menu .pure-menu .current-menu-item>a,
#menu .pure-menu .current-menu-parent>a {
	color: #ffb310;
	background: #000000;
}

#menu .pure-menu .pure-menu-children {
	background-color: #1f1f1f;
	display: none;
}

#menu .pure-menu .pure-menu-children>.current-menu-item>a {
	color: #f1f1f1;
}

#menu .pure-menu .pure-menu-children .menu-item {
	border-left: 2px solid #ffb310;
}

#menu .pure-menu .pure-menu-children>.menu-item>a {
	padding-left: 25px;
}

#menu .pure-menu-item .pure-menu-item {
	display: block;
}

#menu .pure-menu-children {
	display: block;
	position: inherit;
	left: auto;
	top: auto;
	margin: 0;
	padding: 0;
	z-index: auto;
}

#menu .pure-menu-allow-hover:hover>.pure-menu-children,
#menu .pure-menu-active>.pure-menu-children {
	display: block;
	position: inherit;
}

#menu .pure-menu-has-children>.pure-menu-link:after {
	padding-left: 0;
	content: "";
}

#menu .pure-menu-link svg {
	margin-right: 10px;
}

#menu .pure-menu-link svg.fa-caret-down {
	margin: 0 10px 0 5px;
}

#menu .pure-menu-expanded>.pure-menu-link>svg.fa-caret-down {
	transform: rotate(180deg);
}

/*************************************************/
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
/* Alignment Classes, structure from TwentyTwenty */
.entry-content>* {
	margin-left: auto;
	margin-right: auto;
}

.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

[class*="__inner-container"]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 62.5rem;
	width: 100%;
}

[class*="__inner-container"]>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}

/* Full */
.alignfull,
[class*="wp-block"].alignfull {
	margin-right: auto;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}

[class*="__inner-container"]>.alignfull {
	max-width: 100%;
}

/* Wide */
.alignwide,
[class*="wp-block"].alignwide {
	max-width: 70rem;
	position: relative;
	width: calc(100% - 4rem);
}

[class*="__inner-container"]>.alignwide {
	width: 100%;
}

/* Center */
.alignwide,
[class*="wp-block"].alignwide,
[class*="wp-block"].aligncenter img {
	margin-left: auto;
	margin-right: auto;
}

/* Left and right */
.alignleft,
.alignright [class*="wp-block"].alignleft,
[class*="wp-block"].alignright {
	max-width: 50%;
}

.alignleft,
[class*="wp-block"].alignleft {
	/*rtl:ignore*/
	float: left;
	margin: 0.5rem 2rem 2rem 2rem;
}

.alignright,
[class*="wp-block"].alignright {
	/*rtl:ignore*/
	float: right;
	margin: 0.5rem 2rem 2rem 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"]>.alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"]>p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"]>.wp-block-image .alignleft {
	/*rtl:ignore*/
	margin-left: 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"]>.alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"]>p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"]>.wp-block-image .alignright {
	/*rtl:ignore*/
	margin-right: 2rem;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

#masthead .site-footer {
	color: #ffffff;
	padding: 1em 1.25em;
	/* Endorsed logo transform on hover */
}

#masthead .site-footer a {
	color: #cccccc;
	border-bottom: 1px dotted #cccccc;
	text-decoration: none;
}

#masthead .site-footer a:hover {
	color: #ffffff;
	border-bottom: 1px dotted #ffffff;
}

#masthead .site-footer .carbon_fields_asu-super-footer-endorsed-logo .footer-logo {
	transition-duration: 0.5s;
	transform: scale3d(1, 1, 1);
	transform-origin: top left;
	margin: -15px 0 0 -15px;
}

#masthead .site-footer .carbon_fields_asu-super-footer-endorsed-logo .footer-logo:hover {
	transform: scale3d(1.05, 1.05, 1.05);
	cursor: pointer;
}

#masthead .site-footer .carbon_fields_asu-super-footer-endorsed-logo .footer-logo-link {
	border-bottom: none;
	display: inline-block;
}

#masthead .site-footer .carbon_fields_asu-super-footer-endorsed-logo .phone-link svg {
	margin-right: 10px;
}

#masthead .site-footer .carbon_fields_asu-super-footer-endorsed-logo p {
	margin: 0.5em 0 0.5em;
	font-size: 1rem;
}

#masthead .site-footer .carbon_fields_asu-super-footer-social-media .social-icons {
	float: none;
	text-align: left;
	padding: 0 0 1em 0;
	margin: 0;
}

#masthead .site-footer .carbon_fields_asu-super-footer-social-media .social-icons li {
	margin-left: 0;
	padding-left: 0;
	margin-right: 6px;
	display: inline-block;
}

#masthead .site-footer .carbon_fields_asu-super-footer-social-media .social-icons a {
	color: #a9a9a9;
	font-size: 30px;
	border-bottom: none;
	line-height: 1;
}

#masthead .site-footer .carbon_fields_asu-super-footer-social-media .social-icons a:hover {
	color: #ffffff;
}

#masthead .site-footer .btn.contribute {
	border-bottom: none;
	color: #ffffff;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.single-post .entry-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #f0f0f0;
	padding: 2em 0;
}

.single .post-thumbnail,
.single .entry-title,
.single .entry-meta {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.single .entry-title {
	font-size: 48px;
	font-size: 3rem;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0.3em 0;
}

.single .entry-meta {
	border-top: 1px solid #b2b2b2;
	margin-top: 0.5em;
	padding-top: 0.5em;
}

.single .entry-meta>span:after {
	content: "|";
	padding: 0 20px;
}

.single .entry-meta>span:after {
	content: "|";
	padding: 0 20px;
}

.single .entry-meta>span:last-child:after {
	content: "";
}

.single .entry-content,
.single .breadcrumbs,
.single #comments {
	display: block;
	margin: 0 auto;
}

.page .entry-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #f0f0f0;
	padding: 2em 0;
}

.page .post-thumbnail,
.page .entry-title,
.page .entry-meta {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.page .entry-title {
	font-size: 48px;
	font-size: 3rem;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0.3em 0;
}

.page .entry-meta {
	border-top: 1px solid #b2b2b2;
	margin-top: 0.5em;
	padding-top: 0.5em;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
}

.page .entry-meta .breadcrumbs {
	flex: 1 1 auto;
	align-self: flex-start;
}

.page .entry-meta svg {
	margin-right: 10px;
}

.page .entry-meta-group>span:after {
	content: "|";
	padding: 0 20px;
}

.page .entry-meta-group>span:last-child:after {
	content: "";
	padding-right: 0;
}

.page #comments {
	display: block;
	margin: 0 auto;
}

.home #above-posts .entry-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #f0f0f0;
	padding: 0em 0;
}

.home.page .entry-meta {
	display: none;
}

/*--------------------------------------------------------------
## People
--------------------------------------------------------------*/
.single-person .entry-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #222222;
	padding: 2em 0;
}

.single-person .display-person {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	position: relative;
}

.single-person .entry-title {
	position: absolute;
	bottom: 0;
	left: 420px;
	width: auto;
	padding: 0;
}

.single-person .person-name {
	background-color: #8c1d40;
	color: #ffffff;
	padding: 5px 10px;
	display: inline-block;
	font-size: 50px;
	margin: 0 0 10px -50px;
}

.single-person .person-tagline {
	color: #ffffff;
	font-weight: 500;
	display: block;
	margin: 0 0 10px 0;
}

.single-person .contact-details {
	margin: 0;
	padding: 0;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.single-person .contact-details li {
	list-style-type: none;
	display: block;
	text-align: right;
}

.single-person #content .isearch-profile {
	padding: 0.75em 0;
	background-color: #5c6670;
}

.single-person #content .isearch-profile .container {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

.single-person #content .isearch-profile a.isearch-url {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.5rem;
	border-bottom-color: #ffffff;
}

.single-person #content .isearch-profile a.icon {
	color: #ffffff;
	font-weight: 500;
	font-size: 2.5rem;
	border-bottom: 0px;
}

.single-person #content .isearch-profile a.icon svg {
	margin-left: 15px;
}

.single-person #content .isearch-profile a:hover {
	color: #c4c4c4;
}

.single-person #content .isearch-profile .social {
	float: right;
	padding-left: 10px;
	margin-top: -10px;
}

.single-person #content .contact-details li {
	font-weight: 500;
	color: #ffffff;
	line-height: 1.5;
	font-size: 1.5rem;
}

.single-person #content .contact-details li a {
	color: #ffffff;
	border-bottom-color: #ffffff;
}

.single-person .entry-content {
	padding-top: 2em;
	padding-bottom: 2em;
}

.single-person .person-details {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto 5em auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	border-top: 1px solid #cccccc;
}

.single-person .person-details h3 {
	flex: 0 0 100%;
	width: 100%;
}

.single-person .person-details div {
	flex: 1 1 auto;
}

.single-person .person-details ul {
	margin: 0;
}

.post-type-archive-person .site-main .page-header {
	background-color: #222222;
	color: #ffffff;
	padding: 2.5em 0 1em 0;
}

.post-type-archive-person .site-main .page-header .page-title {
	border-bottom: 1px solid #ffffff;
}

.post-type-archive-person .person {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 1.5em;
	margin-bottom: 0;
}

.post-type-archive-person .person .entry-content {
	display: flex;
	flex-direction: row;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.post-type-archive-person .person .post-thumbnail {
	flex: 0 0 200px;
	margin-right: 20px;
}

.post-type-archive-person .person .post-thumbnail a {
	border-bottom: 0;
}

.post-type-archive-person .person .post-thumbnail .placeholder-img {
	width: 300px;
	height: auto;
}

.post-type-archive-person .person .entry-wrap {
	flex: 0 1 auto;
}

.post-type-archive-person .person .entry-title {
	margin: 0.5em 0 0 -40px;
}

.post-type-archive-person .person .person-name {
	background-color: #8c1d40;
	color: #ffffff;
	padding: 5px 10px;
	font-size: 35px;
	margin: 0;
}

.post-type-archive-person .person .person-name:hover {
	background-color: #d23153;
}

.post-type-archive-person .person .person-tagline {
	font-weight: 500;
	margin-bottom: 10px;
}

.post-type-archive-person .person .description {
	font-weight: 400;
}

.post-type-archive-person .person .contact-details {
	padding: 0;
	margin: 0;
}

.post-type-archive-person .person .contact-details li {
	list-style-type: none;
	display: inline;
	text-align: left;
}

.post-type-archive-person .person .contact-details li:after {
	content: "\00B7";
	margin: 0 10px;
}

.post-type-archive-person .person .contact-details li:last-child:after {
	content: "";
}

.post-type-archive-person #featured {
	background-color: #222222;
	padding-bottom: 2em;
}

.post-type-archive-person #featured .person-tagline,
.post-type-archive-person #featured .description {
	color: #ffffff;
}

.post-type-archive-person #featured .featured-person .contact-details a,
.post-type-archive-person #featured .featured-person .contact-details a:visited {
	color: #ffffff;
	border-bottom-color: #ffffff;
}

.post-type-archive-person #featured .featured-person .contact-details a:hover {
	border-bottom-style: solid;
}

.post-type-archive-person .nonfeatured>h2 {
	flex: 0 0 100%;
	border-bottom: 1px solid #d3d3d3;
	margin: 1em auto;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.post-type-archive-person .nonfeatured .person {
	flex: 1 0 100%;
}

.post-type-archive-person .nonfeatured .contact-details li {
	list-style-type: none;
	display: block;
	margin-bottom: 5px;
}

.post-type-archive-person .nonfeatured .contact-details li:after {
	content: "";
}

.post-type-archive-person .nonfeatured .contact-details .office-location {
	display: none;
}

.post-type-archive-person .nonfeatured .description {
	display: none;
}

/*--------------------------------------------------------------
## Publications
--------------------------------------------------------------*/
.single-publication .entry-header {
	background-color: #f0f0f0;
}

.single-publication .entry-header .container {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 1em 0;
}

.single-publication .post-thumbnail {
	flex: 1 0 20%;
	text-align: right;
}

.single-publication .post-thumbnail a {
	border: 2px solid #c4c4c4;
	display: inline-block;
}

.single-publication .post-thumbnail a:hover {
	border-color: #8c1d40;
}

.single-publication .post-thumbnail .wp-post-image {
	width: 150px;
}

.single-publication .entry-title,
.single-publication .entry-meta {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.single-publication .entry-title {
	font-size: 48px;
	font-size: 3rem;
	margin-top: 0;
	margin-bottom: 0;
	padding: .3em 0;
	border-bottom: 1px solid #c4c4c4;
}

.single-publication .entry-meta {
	margin-top: .5em;
	padding-top: .5em;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	flex-direction: column;
	align-items: center;
	border-top: 0;
}

.single-publication .entry-meta .breadcrumbs {
	flex: 1 1 auto;
	align-self: flex-start;
}

.single-publication .entry-meta svg {
	margin-right: 10px;
}

.single-publication .entry-meta-group>span:after {
	content: "|";
	padding: 0 20px;
}

.single-publication .entry-meta-group>span:last-child:after {
	content: "";
	padding-right: 0;
}

.single-publication .entry-content,
.single-publication #comments {
	display: block;
	margin: 0 auto;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.single-publication .entry-footer {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

.single-publication .entry-footer h3 {
	flex: 0 0 100%;
	border-bottom: 1px solid #d3d3d3;
}

.single-publication .entry-footer p {
	font-size: .9rem;
	margin: 10px auto;
}

.single-publication .entry-footer .publication-research,
.single-publication .entry-footer .publication-person {
	flex: 1 0 50%;
	padding-right: 5em;
}

.single-publication .entry-footer .placeholder-img {
	max-width: 80px;
}

.single-publication .entry-footer .person {
	margin-bottom: 1em;
}

.single-publication .entry-footer .person .thumbnail {
	float: left;
	margin-right: 10px;
}

.single-publication .entry-footer .person .person-name {
	display: inline;
}

.single-publication .entry-footer .project h4 {
	margin-bottom: 0;
}

.single-publication .entry-footer .project .research-status {
	text-transform: capitalize;
}

.archive.post-type-archive-publication .page-header {
	background-color: #f0f0f0;
	padding: 2em 0 1em 0;
}

.archive.post-type-archive-publication article.publication {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

.archive.post-type-archive-publication article.publication .entry-title {
	line-height: 1.15;
}

.archive.post-type-archive-publication #featured {
	background-color: #f0f0f0;
	padding-bottom: 2em;
}

.archive.post-type-archive-publication #featured .permalink {
	display: none;
}

.archive.post-type-archive-publication #unfeatured {
	padding: 2em 0 5em 0;
}

.archive.post-type-archive-publication #unfeatured .entry-title {
	display: none;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .citation {
	flex: 3 0 70%;
	padding-right: 1em;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .citation p {
	margin: 0;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .entry-meta {
	flex: 1 0 25%;
	border-left: 1px dotted #cccccc;
	padding-left: 1em;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .entry-meta span {
	display: block;
}

.archive.post-type-archive-publication section>h2 {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

/*--------------------------------------------------------------
## Research, Research Theme
--------------------------------------------------------------*/
.single-research .entry-header {
	background-color: #f0f0f0;
}

.single-research .entry-header .container {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 1em 0;
}

.single-research .post-thumbnail {
	flex: 1 0 40%;
	text-align: left;
}

.single-research .post-thumbnail a {
	border: 2px solid #c4c4c4;
	display: inline-block;
}

.single-research .post-thumbnail a:hover {
	border-color: #8c1d40;
}

.single-research .entry-title,
.single-research .entry-meta {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
}

.single-research .entry-title {
	font-size: 48px;
	font-size: 3rem;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0.3em 0;
	border-bottom: 1px solid #c4c4c4;
}

.single-research .entry-meta {
	margin-top: 0.5em;
	padding-top: 0.5em;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	flex-direction: column;
	align-items: flex-start;
	border-top: 0;
}

.single-research .entry-meta .breadcrumbs {
	flex: 1 1 auto;
	align-self: flex-start;
}

.single-research .entry-content .content-meta .poster svg {
	font-size: 2.5em;
}

.single-research .entry-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.single-research .entry-footer h3 {
	flex: 0 0 100%;
	border-bottom: 1px solid #d3d3d3;
}

.single-research .entry-footer p {
	font-size: 0.9rem;
	margin: 10px auto;
}

.single-research .entry-footer .related-person,
.single-research .entry-footer .related-publication,
.single-research .entry-footer .funding-sources {
	flex: 1 0 33.3%;
	padding-right: 2em;
}

@media (min-width: 0) and (max-width: 767px) {

	.single-research .entry-footer .related-person,
	.single-research .entry-footer .related-publication,
	.single-research .entry-footer .funding-sources {
		flex: 1 0 100%;
		padding-right: 0;
	}
}

.single-research .entry-footer .placeholder-img {
	max-width: 80px;
}

.single-research .entry-footer .person {
	margin-bottom: 1em;
}

.single-research .entry-footer .person .thumbnail {
	float: left;
	margin-right: 10px;
}

.single-research .entry-footer .person .person-name {
	display: inline;
}

.single-research .entry-footer .detail-publication ul {
	margin: 0;
}

.single-research .entry-footer .fund {
	margin-bottom: 1em;
}

.single-research .entry-footer .fund .placeholder-img {
	float: left;
	margin-right: 10px;
}

.single-research .entry-footer .fund h4 {
	display: inline;
}

.archive.post-type-archive-publication .page-header {
	background-color: #f0f0f0;
	padding: 2em 0 1em 0;
}

.archive.post-type-archive-publication article.publication {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

.archive.post-type-archive-publication article.publication .entry-title {
	line-height: 1.15;
}

.archive.post-type-archive-publication #featured {
	background-color: #f0f0f0;
	padding-bottom: 2em;
}

.archive.post-type-archive-publication #featured .permalink {
	display: none;
}

.archive.post-type-archive-publication #unfeatured {
	padding: 2em 0 5em 0;
}

.archive.post-type-archive-publication #unfeatured .entry-title {
	display: none;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .citation {
	flex: 3 0 70%;
	padding-right: 1em;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .citation p {
	margin: 0;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .entry-meta {
	flex: 1 0 25%;
	border-left: 1px dotted #cccccc;
	padding-left: 1em;
}

.archive.post-type-archive-publication #unfeatured .publication .entry-content .entry-meta span {
	display: block;
}

.archive.post-type-archive-publication section>h2 {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

.tax-research-theme .page-header {
	background-color: #222222;
	color: #ffffff;
}

.tax-research-theme .page-header .container {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 1em 0;
}

.tax-research-theme .page-header a {
	color: #ffffff;
	border-bottom-color: #ffffff;
}

.tax-research-theme .page-header .pretext {
	background-color: #ffc627;
	color: #222222;
	padding: 5px 10px;
	margin-bottom: 5px;
	font-weight: 500;
	text-align: left;
}

.tax-research-theme .page-header h1.page-title {
	border-bottom: 1px solid #ffffff;
	margin-bottom: 10px;
	width: 100%;
}

.tax-research-theme .term-meta {
	flex: 3 0 60%;
	margin-top: 0.5em;
	padding-top: 0.5em;
	padding-right: 2em;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	flex-direction: column;
	align-items: flex-start;
	border-top: 0;
}

.tax-research-theme .term-meta .breadcrumbs {
	flex: 1 1 auto;
	align-self: flex-start;
}

.tax-research-theme .term-image {
	flex: 1 0 40%;
	text-align: left;
	width: 35%;
}

.tax-research-theme .section-label {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 1em auto;
}

@media (min-width: 0) and (max-width: 1349px) {
	.tax-research-theme .section-label {
		padding: 0 32px;
	}
}

.tax-research-theme article.research {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto 2em auto;
	display: flex;
	flex-direction: row;
	background-color: #f0f0f0;
}

.tax-research-theme article.research .entry-header {
	flex: 1 0 30%;
}

.tax-research-theme article.research .entry-header .post-thumbnail {
	position: relative;
	top: 20px;
	left: -20px;
	margin-bottom: 20px;
}

.tax-research-theme article.research .entry-header .status {
	position: relative;
	left: -20px;
	background-color: #ffc627;
	color: #222222;
	padding: 5px 10px;
	font-weight: 500;
	top: 15px;
}

.tax-research-theme article.research .entry-header .status span {
	display: block;
	font-weight: 300;
}

.tax-research-theme article.research .entry-content {
	flex: 2 0 65%;
	padding-right: 2em;
}

.tax-research-theme article.research .entry-title {
	margin: 0;
	line-height: 1.15;
}

.tax-research-theme article.publication {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto 2em auto;
	display: flex;
	flex-direction: row;
	background-color: #f0f0f0;
}

.tax-research-theme article.publication .entry-header {
	flex: 1 0 5%;
}

.tax-research-theme article.publication .entry-header .post-thumbnail {
	position: relative;
	top: 20px;
	left: -20px;
	margin-bottom: 20px;
}

.tax-research-theme article.publication .entry-header .post-thumbnail .wp-post-image {
	max-height: 200px;
	width: auto;
	margin-bottom: 1em;
}

.tax-research-theme article.publication .entry-header .post-thumbnail .outline {
	border: 3px solid #000000;
	border-radius: 3px;
}

.tax-research-theme article.publication .entry-header .status {
	position: relative;
	left: -20px;
	background-color: #ffc627;
	color: #222222;
	padding: 5px 10px;
	font-weight: 500;
	top: 15px;
}

.tax-research-theme article.publication .entry-header .status span {
	display: block;
	font-weight: 300;
}

.tax-research-theme article.publication .entry-content {
	flex: 2 0 65%;
	padding-right: 2em;
}

.tax-research-theme article.publication .entry-title {
	margin: 0;
	line-height: 1.15;
}

/*--------------------------------------------------------------
## Archive Pages
--------------------------------------------------------------*/
.archive #main article .entry-content>* {
	width: 100%;
}

.archive #main article .entry-content .entry-meta {
	width: auto;
	margin: 0;
}

.archive .page-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1em 0 2em 0;
}

.archive .page-header h1 {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

.archive .page-header .archive-description {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto;
}

.archive .post {
	display: flex;
	justify-content: flex-start;
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto 2em auto;
	padding: 1em;
	background: #f0f0f0;
}

.archive .post .entry-header {
	flex: 1 0;
	position: relative;
	right: 2em;
}

.archive .post .entry-header img {
	border: 2px solid transparent;
}

.archive .post .entry-header img:hover {
	border: 2px solid #8c1d40;
}

.archive .post .entry-content {
	flex: 2;
	margin-top: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.archive .post .entry-content .entry-title {
	margin: 0;
}

.archive .post .entry-meta {
	padding: 0.5em 0.75em;
	color: #222222;
	background-color: #ffc627;
	font-weight: 500;
	text-align: right;
	align-self: flex-end;
	margin-top: auto;
	left: 2em;
	position: relative;
}

.archive .post .entry-meta svg {
	margin-right: 10px;
}

.archive .post .entry-meta>span:after {
	content: "|";
	padding: 0 20px;
}

.archive .post .entry-meta>span:last-child:after {
	content: "";
	padding: 0;
}

.archive .posts-navigation {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin: 0 auto 2em auto;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
## Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .breadcrumbs__trail {
	padding: 0;
	margin: 0;
}

.breadcrumbs .breadcrumbs__crumb {
	list-style-type: none;
	display: inline;
	font-size: 1em;
}

.breadcrumbs .breadcrumbs__crumb:after {
	content: "\00BB";
	padding: 0 10px;
}

.breadcrumbs .breadcrumbs__crumb:last-child:after {
	content: "";
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	max-width: 62.5rem;
	width: calc(100% - 4rem);
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Font Awesome 5
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hamburgers. Fancy, delicious.
--------------------------------------------------------------*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/* Complete Type List
$hamburger-types: (
  3dx,
  3dx-r,
  3dy,
  3dy-r,
  3dxy,
  3dxy-r,
  arrow,
  arrow-r,
  arrowalt,
  arrowalt-r,
  arrowturn,
  arrowturn-r,
  boring,
  collapse,
  collapse-r,
  elastic,
  elastic-r,
  emphatic,
  emphatic-r,
  minus,
  slider,
  slider-r,
  spin,
  spin-r,
  spring,
  spring-r,
  stand,
  stand-r,
  squeeze,
  vortex,
  vortex-r
) !default;
*/
.hamburger {
	padding: 15px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover {
	opacity: 0.9;
}

.hamburger.is-active:hover {
	opacity: 0.9;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #fff;
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -10px;
}

.hamburger-inner::after {
	bottom: -10px;
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
	transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
	transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
	transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
	transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
	transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
	transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
	transform: rotate(-225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*# sourceMappingURL=style.css.map */