.blog-listing-native {
	width: 100%;
}

.blog-listing-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.blog-filter-wrap {
	display: flex;
	min-width: 220px;
    flex-direction: column;
}

label.blog-filter-label {
    font-size: 12px !important;
}

.blog-filter-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	min-width: 220px;
	max-width: 320px;
	height: 42px;
	padding: 0 42px 0 16px;
	border: 1px solid #e6e6e6 !important;
	border-radius: 8px;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234f7f3f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	color: #222222;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	outline: none;
	transition: border-color 0.25s ease;
}

.blog-filter-select:hover,
.blog-filter-select:focus {
	border-color: #4f7f3f;
}

.blog-search-wrap {
	position: relative;
	width: 245px;
	flex-shrink: 0;
}

.blog-search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	color: #111111;
	pointer-events: none;
}

.blog-search-input {
	width: 100%;
	height: 42px;
	border: 1px solid #e6e6e6;
	background: #f3f3f3;
	border-radius: 8px;
	padding: 0 16px 0 40px;
	font-size: 13px;
	color: #111111;
	outline: none;
	font-weight: 500;
}

.blog-search-input:focus {
	border-color: #4f7f3f;
	background: #ffffff;
}

.blog-search-input::placeholder {
	color: #505050 !important;
}

.blog-results-area {
	position: relative;
}

.blog-loader {
	display: none;
	margin-bottom: 16px;
	font-size: 14px;
	color: #4f7f3f;
}

.blog-loader.active {
	display: block;
}

.blog-grid.is-loading {
	opacity: 0.45;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.blog-empty {
	width: 100%;
	padding: 40px 20px;
	border: 1px dashed #d7d7d7;
	border-radius: 14px;
	text-align: center;
	color: #666666;
	font-size: 15px;
}

.main-post-list__categories {
	margin: 0 0 6px;
	color: #4f7f3f;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

/* Pagination */
.blog-pagination {
	margin: 30px 0;
}

.blog-pagination.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.blog-pagination-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-pagination-pages {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-page-btn {
	min-width: 38px;
	height: 38px;
	border: 1px solid #e5e5e5;
	background: #ffffff;
	color: #222222;
	border-radius: 999px;
	padding: 0 14px;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	transition: all 0.25s ease;
}

.blog-page-btn:hover,
.blog-page-btn.active {
	border-color: #4f7f3f;
	background: #4f7f3f;
	color: #ffffff;
}

.blog-page-btn.active {
	pointer-events: none;
}

.blog-prev-btn,
.blog-next-btn {
	min-width: auto;
	padding: 0 18px;
}

.blog-page-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 38px;
	color: #777777;
	font-size: 14px;
	line-height: 1;
}

.blog-mobile-page-status {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 12px;
	color: #333333;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

@media (max-width: 991px) {
	.blog-listing-header {
		align-items: stretch;
		flex-direction: column;
	}

	.blog-filter-wrap,
	.blog-filter-select,
	.blog-search-wrap {
		width: 100%;
		max-width: 360px;
	}
}

@media (max-width: 768px) {
	.blog-pagination-nav,
	.blog-pagination-pages {
		gap: 6px;
	}

	.blog-page-btn {
		min-width: 34px;
		height: 34px;
		padding: 0 11px;
		font-size: 13px;
	}

	.blog-prev-btn,
	.blog-next-btn {
		padding: 0 14px;
	}

	.blog-page-dots {
		height: 34px;
		min-width: 14px;
	}
}

@media (max-width: 575px) {
	.blog-listing-header {
		gap: 18px;
	}

	.blog-filter-wrap,
	.blog-filter-select,
	.blog-search-wrap {
		max-width: 100%;
	}

	.blog-pagination-pages {
		display: none;
	}

	.blog-mobile-page-status {
		display: inline-flex;
		min-height: 36px;
		font-size: 13px;
	}

	.blog-page-btn {
		height: 36px;
		font-size: 13px;
	}

	.blog-prev-btn,
	.blog-next-btn {
		padding: 0 16px;
	}
}

@media (max-width: 380px) {
	.blog-prev-btn,
	.blog-next-btn {
		padding: 0 12px;
		font-size: 12px;
	}

	.blog-mobile-page-status {
		padding: 0 6px;
		font-size: 12px;
	}
}
