/**********************************************************
// Post >> Entry
**********************************************************/
.Entry-Header {
	margin: auto;
	padding: var(--20px);
	width: 100%;
	min-height: var(--300px);
	background-color: var(--Color-Dark-Blue);
	color: var(--Color-White);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	}

.Entry-Header:before {
	content: '';
	/*background-image: linear-gradient( 90deg, var(--Color-Dark-Blue), rgba(0,0,0,0) );*/
	background: rgba(17, 20, 33, 0.47);
	position: absolute;
	z-index: 20;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	}

.Entry-Header-Inner {
	position: relative;
	z-index: 50;
	}

.Entry-Header-BG {
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: 10;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	}

.Entry-Header h1 {
	padding: 0 !important;
	line-height: 1.3em;
	font-weight: 700;
	font-weight: 600;
	font-size: var(--40px);
	text-shadow: var(--3px) var(--3px) var(--6px) rgba(0, 0, 0, 0.5);
	}

.Entry-Header h2 {
	margin-top: var(--10px);
	line-height: 1.3em;
	text-transform: uppercase;
	letter-spacing: var(--1px);
	font-weight: 600;
	font-size: var(--16px);
	opacity: 0.75;
	}

.Entry-Main {
	margin: var(--30px) auto;
	width: 100%;
	max-width: var(--1024px);
	}

.Entry-Outer { padding: 0 var(--20px); }

/**********************************************************
// Post >> Entry >> Social
**********************************************************/
.Entry-Social {
	margin-bottom: var(--40px);
	color: var(--Color-Blue);
	}

.Entry-Social li a {
	width: var(--40px);
	height: var(--40px);
	border-radius: 100%;
	background: var(--Color-Light-Gray);
	color: var(--Color-Blue);
	transform: scale(1);
	transition-property: background, color, transform;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.Entry-Social li a:hover,
.Entry-Social li a:focus {
	transform: scale(1.1);
	background: var(--Color-Blue);
	color: var(--Color-White);
	}

/**********************************************************
// Post >> Entry >> Related
**********************************************************/
.Entry-Related {
	margin: auto;
	padding: var(--30px) 0 var(--40px) 0;
	width: 100%;
	max-width: var(--1024px);
	border-top: var(--1px) dashed #DDD;
	text-align: center;
	}

.Entry-Related > h2 {
	margin-bottom: var(--30px);
	padding: 0 !important;
	text-transform: uppercase;
	letter-spacing: var(--1px);
	font-size: var(--26px);
	}

/**********************************************************
// Post >> Entry >> Misc.
**********************************************************/
.wp-block-file {
	padding-bottom: var(--30px);
	text-align: center;
	}

.wp-block-file > a:first-of-type,
.wp-block-file__button {
	margin: var(--20px) auto 0 auto;
	padding: var(--14px) var(--30px);
	border-radius: var(--30px);
	background: var(--Color-Blue);
	color: var(--Color-White);
	text-transform: uppercase;
	line-height: 1.3em;
	letter-spacing: var(--2px);
	font-weight: 700;
	font-size: var(--14px);
	transform: scale(1);
	transition-property: background, color, transform;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
	box-shadow: var(--1px) var(--1px) var(--3px) rgba(0, 0, 0, 0.2);
	display: inline-block;
	vertical-align: middle;
	}

.wp-block-file > a:first-of-type:hover,
.wp-block-file > a:first-of-type:focus,
.wp-block-file__button:hover, 
.wp-block-file__button:focus {
	transform: scale(1.05);
	background: var(--Color-Light-Blue);
	color: var(--Color-White);
	}

/**********************************************************
// Media Queries
**********************************************************/
@media /* 1024px */
all and (max-width: 64rem),
all and (max-device-width: 64rem)
{

}

@media /* 768px */
all and (max-width: 48rem),
all and (max-device-width: 48rem)
{
	.Entry-Header { min-height: var(--200px); }
	.Entry-Header h1 { font-size: var(--30px); }
}
