/* Featured Videos Section */
.fc_featured_videos {
	padding-top: var(--settings_padding_top);
	padding-bottom: var(--settings_padding_bottom);
	margin-top: var(--settings_margin_top);
	margin-bottom: var(--settings_margin_bottom);
}
.featured-videos {
	padding: 0 0 60px 0;
	position: relative;
}
.featured-videos .custom-nav {
	position: absolute;
	bottom: 0;
	display: flex;
	gap: 30px;
	margin-top: 40px;
}
.featured-videos .custom-nav button {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	position: relative;
	width: 60px;
	height: 20px;
	display: flex;
	align-items: center;
	transition: opacity 0.3s ease, transform 0.3s ease;
	text-indent: -9999px;
}
.featured-videos .custom-nav button:hover {
	opacity: 0.6;
	transform: translateX(5px);
}
.featured-videos .custom-nav .prev-btn:hover {
	transform: translateX(-5px);
}
.featured-videos .custom-nav button::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--color-1);
}
.featured-videos .custom-nav button::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--color-1);
	border-bottom: 2px solid var(--color-1);
	border-radius: 0;
}
.featured-videos .next-btn::after {
	right: 0;
	transform: rotate(-45deg) scaleX(1);
}
.featured-videos .prev-btn::after {
	left: 0;
	transform: rotate(135deg) scaleX(1);
}
.featured-videos .videos .video .categories {
	margin: 16px 0 8px 0;
}
.featured-videos .videos .video .categories>a {
	color: var(--color-3);
	font-size: 14px;
}
.featured-videos .videos .video .heading {
	font-size: 18px;
	font-weight: 800;
	margin: 8px 0 12px 0;
	padding-bottom: 12px;
	position: relative;
}
.featured-videos .videos .video .heading::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 2px;
	background-color: var(--color-5);
	opacity: .2;
	bottom: 0;
	left: 0;
}
body.post-template-default .featured-videos,
body.video-template-default .featured-videos {
    background-color: var(--color-9);
    padding: 35px 0;
}
body.post-template-default .featured-videos .content,
body.video-template-default .featured-videos .content {
    margin-bottom: 15px;
}
body.post-template-default .featured-videos h2,
body.video-template-default .featured-videos h2 {
    color: #fff;
}
body.post-template-default .featured-videos .custom-nav,
body.video-template-default .featured-videos .custom-nav {
    bottom: 40px;
    z-index: 4;
}
body.post-template-default .item,
body.video-template-default .item {
    background-color: #fff;
    padding: 15px;
}
body.post-template-default .item .excerpt,
body.video-template-default .item .excerpt {
    display: none;
}
body.post-template-default .featured-videos .videos .video .heading::after,
body.video-template-default .featured-videos .videos .video .heading::after {
    display: none;
}
body.post-template-default .featured-videos .custom-nav button::before,
body.video-template-default .featured-videos .custom-nav button::before {
    background-color: #fff;
}
body.post-template-default .featured-videos .custom-nav button::after,
body.video-template-default .featured-videos .custom-nav button::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
}
body.post-template-default .featured-videos .videos .video .heading,
body.video-template-default .featured-videos .videos .video .heading {
    margin-bottom: 0;
    padding-bottom: 0;
}

@media screen and (max-width: 991px) {}
@media screen and (max-width: 767px) {}