/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 03 2026 | 19:07:28 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* Blog Pagination */
.decore-blog-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}

.decore-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	margin: 0 3px;
	padding: 0 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	line-height: 1;
	transition: all 0.2s ease;
}

.decore-blog-pagination a.page-numbers:hover {
	border-color: #999;
	text-decoration: none;
}

.decore-blog-pagination .page-numbers.current {
	font-weight: 700;
	border-color: #555;
}

/* Replace Previous / Next text with carets */
.decore-blog-pagination .prev,
.decore-blog-pagination .next {
	font-size: 0;
}

.decore-blog-pagination .prev::before,
.decore-blog-pagination .next::before {
	font-size: 20px;
	line-height: 1;
}

.decore-blog-pagination .prev::before {
	content: "‹";
}

.decore-blog-pagination .next::before {
	content: "›";
}