/* Featured News Section */
.featured-news {
	padding-top: var(--settings_padding_top);
	padding-bottom: var(--settings_padding_bottom);
	margin-top: var(--settings_margin_top);
	margin-bottom: var(--settings_margin_bottom);
}
/* Filter row */
.featured-news .filter-row {
	justify-content: flex-end;
	align-items: stretch;
	gap: 12px;
	margin-bottom: 30px;
}
.featured-news .filter-row .col {
	flex: 0 0 auto;
	display: flex;
}
/* Search box */
.featured-news .search-form {
	position: relative;
	display: flex;
	align-items: stretch;
}
.featured-news .search-form input[type="text"] {
	width: 240px;
	max-width: 100%;
	margin: 0;
	padding: 10px 44px 10px 14px;
	border: 1px solid #c9c9c9;
	background-color: #fff;
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.2;
}
.featured-news .search-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	padding: 0 14px;
	border: none;
	background: none;
	color: #9a9a9a;
	font-size: 15px;
	cursor: pointer;
	transition: color 0.3s ease;
}
.featured-news .search-form button:hover,
.featured-news .search-form button:focus {
	color: var(--color-2);
}
/* Sort By Category button */
.featured-news .cat-col select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 10px 44px 10px 20px;
	border: none;
	border-radius: 0;
	background-color: var(--color-2);
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.3s ease;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}
.featured-news .cat-col select option[disabled] {
	color: #999;
	font-size: 12px;
	display: none;
}
.featured-news .cat-col select:hover,
.featured-news .cat-col select:focus {
	background-color: var(--color-1);
}
.featured-news .cat-col select option {
	color: var(--text-color);
	background-color: #fff;
	font-weight: 400;
}


.featured-news .posts.loading {
	opacity: 0.4;
	pointer-events: none;
	transition: opacity 0.15s ease;
}
.featured-news .posts .no-results {
	flex: 1 1 100%;
}
/* Pagination */
.featured-news .news-pagination-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}
.featured-news .news-pagination {
	display: flex;
	align-items: center;
	gap: 16px;
}
.featured-news .news-pagination .page-number {
	padding: 0;
	border: none;
	background: none;
	color: var(--text-color);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: color 0.3s ease;
}
.featured-news .news-pagination button.page-number:hover,
.featured-news .news-pagination button.page-number:focus,
.featured-news .news-pagination .page-number.current {
	color: var(--color-2);
}
.featured-news .news-pagination .page-number.current {
	cursor: default;
}
.featured-news .news-pagination .page-number.dots {
	cursor: default;
}
.videos-section .post {
	display: flex;
	flex-direction: column;
}
.videos-section .post .image {
	order: -2;
}
.videos-section .post .categories {
	order: -1;
	margin-bottom: 0;
}
.videos-section .post .heading {
	position: relative;
	padding-bottom: 10px;
}
.videos-section .post .heading:after {
	content: '';
	height: 1px;
	width: 62px;
	background: rgba(35, 77, 116, 0.50);
	position: absolute;
	bottom: 0;
	left: 0;
}
@media screen and (max-width: 767px) {
	.featured-news .filter-row {
		flex-direction: column;
		align-items: stretch;
	}
	.featured-news .filter-row .col,
	.featured-news .search-form,
	.featured-news .search-form input[type="text"] {
		width: 100%;
	}
}