.video-hover-grid {
	display: flex;	
	flex-wrap: wrap;
	margin-left: -20px;
	margin-right: -20px;
}

.video-hover-grid-item {
	flex-basis: calc(50% - 40px);
	margin: 20px;
}

.video-hover-inner {
	cursor: pointer;
	height: 500px;
	overflow: hidden;
	position: relative;
}

.video-hover-inner:after {
	background: transparent;
	border: 0;
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
	border-style: solid;
	border-width: 37px 0 37px 60px;
	box-sizing: border-box;
	content: "";
	cursor: pointer;
	height: 74px;
	position: absolute;
		right: 40px;
		bottom: 40px;
		z-index: 10;
	transition: 100ms all ease;
	width: 0;
}

.playing .video-hover-inner:after {
	border-style: double;
	border-width: 0px 0 0px 60px;
}

.video-hover-inner:hover:after {
	border-color: transparent transparent transparent #ffffff;
}

.video-hover-grid-item .person-card__details {
	display: block;
	padding: 20px 0;
}

.video-hover-grid-item .person-card__details .person-card__details__card-title {
	margin-bottom: 1rem;
}

.video-hover-grid-item img,
.video-hover-grid-item video,
.video-hover-grid-item svg {
	width: 100%;
}

.video-hover-grid-item img {
	display: block;
	height: 100%;
	object-fit: cover;
	position: relative;
		z-index: 10;
	width: 100%;
}

.video-hover-grid-item video {
	height: 100%;
	object-fit: cover;
	position: absolute;
		top: 0;
		z-index: 5;
	width: 100%;
}

.video-hover-grid-item svg {
	fill: #ffffff;
	height: 110%;
	object-fit: cover;
	position: absolute;
		top: -5%;
		left: -5%;
		z-index: 15;
	transition: 0.5s;
	width: 110%;
}

.video-hover-grid-item.playing img {
	z-index: 0;
}

.video-hover-grid-item.playing video {
	z-index: 5;
}

.video-hover-grid-item:hover svg {
	height: calc(100% + 2px);
	top: -1px;
	left: -1px;
	z-index: 15;
	transition: 0.5s;
	width: calc(100% + 2px);
	right: -1px;
	bottom: -1px;
}

@media screen and (max-width: 1200px) {
	.video-hover-grid {
		margin-left: -10px;
		margin-right: -10px;
	}

	.video-hover-grid-item {
		flex-basis: calc(50% - 20px);
		margin: 10px;
	}

	.video-hover-inner {
		height: 300px;
	}
}

@media screen and (max-width: 900px) {
	.video-hover-grid {
		margin-left: 0;
		margin-right: 0;
	}

	.video-hover-grid-item {
		flex-basis: 100%;
	}
	
	.video-hover-inner {
		height: 400px;
	}
}