.youtube_gallery_title{
	margin: 40px 0 20px;
}
.youtube_gallery{
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 40px 20px;
}
.youtube_gallery a{
	display: block;
	color: #000;
	text-decoration: none;
}
.youtube_gallery a .image{
	position: relative;
}
.youtube_gallery a .image:after{
	content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="52" height="36" viewBox="0 0 260 180"><path fill="white" d="M220 2H40C19.01 2 2 19.01 2 40v100c0 20.99 17.01 38 38 38h180c20.99 0 38-17.01 38-38V40c0-20.99-17.01-38-38-38zM102 130V50l68 40z"/></svg>');
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
.youtube_gallery a .title{
	margin-top: 12px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

@media( max-width: 991px ){
	.youtube_gallery{
		grid-template-columns: repeat( 2, 1fr );
	}
}