/*===========================================================*/
/* NEWS LISTING PAGE */
/*===========================================================*/
.PageHeader h1,
.PageHeader h2 {
	display: inline-block;
}
.PageHeader h2 {
	position: relative;
	top: -0.2em;

	margin-left: 100px;

	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 14px;

	text-transform: uppercase;

	color: #DAB76C;
}
.StandardList [class*="ListItem"] > * {
	max-width: 98%;
}
.BlogPostsListItem .ImageColumn {
	width: 122px;
	min-width: 122px;
	max-width: 122px;

	margin-right: 32px;

	padding-top: 0.35em;

	font-size: 1.25em; /* same as the .Title to ensure top margin remains accurate */
}
.BlogPostsListItem .Image {
	display: block;

	width: 100%;

	background: transparent no-repeat scroll center top;
	background-size: cover;
}
.BlogPostsListItem .Image img,
.BlogPostsListItem .Image svg {
	display: block !important;

	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;

	transform: translateX(-50%) translateY(-50%);

	height: 100%;
}

.BlogPostsListItem .Content {
	margin-bottom: 2.25em !important;
}
.BlogPostsListItem a.ReadMore {
	font-size: 0.875em;

	text-decoration: none;
}
.Mobile .BlogPostsListItem a.ReadMore {
	font-size: inherit;
}

.BlogDisclaimerLinkWrapper {
	margin: 3em 0 0;
}


.PageSidebarColumn {
	border-left: none;
}
.PageSidebarColumn .OpenIcon,
.PageSidebarColumn .CloseIcon {
	display: none;
}
.PageSidebarColumn a.Active {
	color: #333333;
}
.PageSidebarColumn .Content > ul > li > a {
	text-transform: uppercase;
}
.PageSidebarColumn li > ul {
	display: none;

	margin-top: 0.5em;

	padding-left: 1.7857142857em;
}
.PageSidebarColumn li.ActiveParent > ul,
.PageSidebarColumn li.Active > ul {
	display: block;
}

@media	(max-width: 640px) {
	body::before {
		content: '';

		position: absolute;
		left: 0;
		top: 50px;
		z-index: 1;

		width: 100%;
		height: 0;

		background-color: #1e1e1e;

		opacity: 0;

		transition: all 0.5s;
	}
	body.ViewBlogCategoriesOpen::before {
		height: 100vh;

		opacity: 0.8;
	}
	.PageHeader .Heading {
		text-align: left;
	}
	.PageHeader h2 {
		margin-left: 30px;
	}

	main .PageContent {
		padding-top: 77px;
	}

	.StandardList [class*="ListItem"] > * {
		max-width: 100%;
	}

	.PageContentColumn.SidebarVisible {
		order: 2;

		border-bottom: none;
	}

	.BlogPostsListItem .ImageColumn {
		margin-bottom: 0.7em;

		padding-top: 0;
	}

	.BlogPostsListItem a.ReadMore {
		font-size: inherit;
	}

	.PageSidebarColumn {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 100;

		width: 100%;

		margin-top: 0;
	}

	.PageSidebarColumn h4 {
		padding: 0.7em 2rem;

		cursor: pointer;
	}
	.PageSidebarColumn h4 svg {
		font-size: 1.119em;
	}
	.PageSidebarColumn .OpenIcon {
		display: block;
	}
	.PageSidebarColumn.Open .OpenIcon {
		display: none;
	}
	.PageSidebarColumn.Open .CloseIcon {
		display: block;
	}

	.PageSidebarColumn .Content {
		display: none;

		max-height: calc(100vh - 115px - 47px - 53px - 52px);

		padding: 0;

		font-size: 18px;

		line-height: 1.2;

		overflow: auto;
	}
	.PageSidebarColumn .Content a:active {
		color: #333333;
	}
	.PageSidebarColumn .Content ul {
		margin-bottom: 0;
	}
	.PageSidebarColumn .Content li {
		margin-bottom: 0.8714285714em;
	}
	.PageSidebarColumn .Content li.TopMost {
		margin-bottom: 0;

		border-bottom: 2px solid #a1a1a1;
	}
	.PageSidebarColumn li.ActiveParent > a {
		color: #333333;
	}
	.PageSidebarColumn li.TopMost > a {
		padding: 0.966667em 1.6111111111em 0.966667em 2em;

		border-bottom: 2px solid transparent;
	}
	.PageSidebarColumn li.TopMost.Open > a {
		border-bottom-color: #a1a1a1;
	}

	.PageSidebarColumn li.TopMost > ul {
		margin-top: 0.8em;
		margin-bottom: 1em;

		padding-left: 3.5555555556em;
		padding-right: 1.6111111111em;
	}

	.PageSidebarColumn li.HasChildren > a .MobileIcon::after {
		content: '+';

		margin-left: 0.7em;

		font-size: 1.4444444444em;

		line-height: 0.8;
	}
	.PageSidebarColumn li.HasChildren.Open > a .MobileIcon::after {
		content: '\02212';
	}

	.PageSidebarColumn li.HasChildren > ul {
		display: none;
	}
}