body.modalOpen{
  overflow-y: hidden;
}
.ppost-header {
	position: relative;
}
.ppost-header .ppost-header__body {
	display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows: auto 340px;
}
.ppost-header .ppost-header__body .ppost-header__content {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	position: relative;
	padding: 2rem 0;
	z-index: 1;
}
.ppost-header .ppost-header__body .ppost-header__content p:last-child {
	margin: 0;
}
.ppost-header .ppost-header__body .ppost-header__image {
	grid-column: 1 / 4;
	grid-row: 2 / 3;
	position: relative;
	width: 100%;
	height: 100%;
}
.ppost-header .ppost-header__body .ppost-header__image > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%!important;
	object-fit: cover;
	object-position: center;
	filter: grayscale(1);
	z-index: -2;
}
.ppost-header .ppost-header__body .ppost-header__image .ppost__video-modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 1.5rem;
	color: #fff;
	width: 80px;
	height: 80px;
	background: var(--secondary);
	border: 0;
	border-radius: 50%;
	display: grid;
	place-content: center;
	padding-top: 0.25rem;
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.15);
	transition: all ease-in-out .3s;
	cursor: pointer;
}
.ppost-header .ppost-header__body .ppost-header__image .ppost__video-modal:hover {
	box-shadow: 0px 0px 12px 5px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
	.ppost-header .ppost-header__body {
		grid-template-columns: 40px 1fr 180px 1fr 40px;
		grid-template-rows: auto;
		align-items: center;
	}
	.ppost-header .ppost-header__body .ppost-header__content {
		grid-column: 2 / 4;
		grid-row: 1 / 2;
		padding: 5rem 0;
	}
	.ppost-header .ppost-header__body .ppost-header__image {
		grid-column: 3 / 6;
		grid-row: 1 / 2;
	}
	.ppost-header .ppost-header__body .ppost-header__image:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, rgba(255,255,255,1) 10%, rgba(255,255,255,0) 90%);
		z-index: -1;
	}
}
@media (min-width: 1241px) {
	.ppost-header .ppost-header__body {
		grid-template-columns: 1fr 420px 260px 480px 1fr;
	}
}
@media (min-width: 1380px) {
	.ppost-header .ppost-header__body {
		grid-template-columns: 1fr 460px 260px 520px 1fr;
	}
}


{# Video Modal Styles #}
.video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.video-modal:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary);
	opacity: .95;
}
.video-modal > .container {
	height: 100%;
}
.video-modal .modal__body {
	position: relative;
	display: grid;
	place-content: center;
	width: 100%;
	height: 100%;
}
.video-modal .modal__body .modal__content {
	position: relative;
}
.video-modal .modal__body .modal__content video {
	width: 100%;
}
.video-modal .modal__content .modal__close {
	position: absolute;
	top: -2rem;
	right: 0;
	font-size: 1.5rem;
	color: #fff;
	background: 0;
	border: 0;
	cursor: pointer;
	z-index: 1;
}
@media (min-width: 768px) {
	.video-modal .modal__content .modal__close {
		right: -2rem;
	}
}








