
#experts_library .expert {
	display: grid;
	grid-template-columns: 4fr 6fr; 
    column-gap: 30px; 

	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 2px solid var(--fortem_blue);
}
/* hide the clone by default */
#experts_library .expert_video_clone {
	display: none;	
}
#experts_library .expert_video {
	cursor: pointer;	
}
#experts_library .expert_video .thumb {
	aspect-ratio: 16/9;
	position: relative;
	background-position: center;
	background-size: cover;
}
#experts_library .expert_text h3 {
	font-size: 1.2em;
	line-height: 1.3;
	margin-bottom: 0.3em;
}

#experts_library .expert_text >  p:last-child {
	margin-bottom: 0;	
}

.play_icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	
	color: red;
	font-size: 70px;
	line-height: 60px;
	
	background: rgba(255,255,255,0.0);
	padding: 15px 10px 15px 20px;
	border-radius: 100px;
	text-align: center;
	
	transition: all 0.2s ease-in-out;
}

.expert_video:hover .play_icon {
	background: rgba(255,255,255,0.5);
}


/* overlay for playing single video (loaded using video_library.js) */
#video_overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.9);
	display: none;
	z-index: 9999;
}
#video_overlay .video_container {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#video_overlay .video_content {
	width: 90%;
	max-width: 900px;
	aspect-ratio: 16/9;
	position: relative;
}
#video_overlay iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}


/* pagination */
ul.pagination {
	padding-left: 0;
	text-align: center;
	list-style: none;
	margin-top: 20px;
}
ul.pagination li {
	display: inline-block;
	background-image: none;
	padding: 0;	
	vertical-align: middle;
}
ul.pagination li a {
	text-decoration: none;
	display: block;
	background: #fff;
	color: #444;
	margin: 0 4px;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	line-height: 30px;
	text-align: center;
}
ul.pagination li.active a {
	background: var(--fortem_blue);
	color: #fff;
}
ul.pagination li.prevnext a {
	font-size: 20px;
	border: none;
}
ul.pagination li.disabled a {
	opacity: 0.3;
	cursor: default;
	display: none;
}



@media(max-width: 740px) {
	#experts_library .expert {
		display: block; /* single column */	
	}
	/* show the clone  */
	#experts_library .expert_video_clone {
		display: block;	
		margin-bottom: 20px;
	}
	/* hide the normal one  */
	#experts_library .main_video {
		display: none;	
	}
}
