/* Navegación */
#pagination-container .pagination {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	background-color: white;
	max-width: 500px;
	margin: 0 auto;
	padding: 0px 40px;
}
#pagination-container .pagination .previouspostslink, #pagination-container .pagination .nextpostslink {
		color: #2583fd;
		font-size: 28px;
		font-weight: 700
}

#pagination-container .pagination .previouspostslink {
		border-right: 1px solid #e1e6ee;
		padding-right: 10px;
		position: absolute;
		left: 0
}

#pagination-container .pagination .nextpostslink{
		border-left: 1px solid #e1e6ee;
		padding-left: 10px;
		position: absolute;
		right: 0
}
#pagination-container .pagination a.page-link, #pagination-container .pagination span {
	padding-right: 20px;
	padding-left: 20px;
	color: #21264d;
	font-size: 17px;
	font-weight: 500;
	border: none;
}
#pagination-container .pagination a.page-link.current{
		border-bottom: 2px solid #ff4f52;
		color:#ff4f52;
		margin-top: 2px;
		padding-top: 10px;
		padding-bottom: 10px
}
/**/
.bloque_list_posts .pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 20px;
	flex-wrap: wrap;
}
  
.bloque_list_posts .pagination a,
.bloque_list_posts .pagination span {
	padding: 6px 12px;
	border: 1px solid #ddd;
	color: #007bff;
	text-decoration: none;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}
  
.bloque_list_posts .pagination a:hover:not(.current):not(.disabled) {
	background-color: #e9ecef;
}
  
.bloque_list_posts .pagination a.current {
	background-color: #E68310;
	color: white;
	cursor: default;
	border-color: #E68310;
	font-weight: bold;
}
  
.bloque_list_posts .pagination .disabled {
	color: #999;
	border-color: #ddd;
	cursor: default;
	background-color: #f8f9fa;
}
.bloque_list_posts .pagination .page-link {
	padding: 6px 10px;
	border: 1px solid #ccc;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.bloque_list_posts .pagination .page-link.current {
	background-color: #E68310;
	color: #fff;
	border-color: #E68310;
	font-weight: bold;
}

.bloque_list_posts .pagination .page-link.disabled {
	opacity: 0.5;
	pointer-events: none;
	cursor: default;
}
.bloque_list_posts .pagination .pagination-ellipsis {
	padding: 6px 12px;
	color: #666;
	user-select: none;
	cursor: default;
  }
  
/*Navegación con pagenavi*/
.wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: white;
	max-width: 260px;
	margin: 0 auto;
	padding: 0px 40px;
	border-radius: 49px;
	box-shadow: 0 1px 3px 0 rgba(89, 98, 115, 0.12);
	position: relative;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
		color: #2583fd;
		font-size: 28px;
		font-weight: 700
}

.wp-pagenavi .previouspostslink {
		border-right: 1px solid #e1e6ee;
		padding-right: 10px;
		position: absolute;
		left: 0
}

.wp-pagenavi .nextpostslink {
		border-left: 1px solid #e1e6ee;
		padding-left: 10px;
		position: absolute;
		right: 0
}
.wp-pagenavi a, .wp-pagenavi span {
	padding-right: 10px;
	padding-left: 10px;
	color: #2c3340;
	font-weight: 700
}
.wp-pagenavi .current {
		border-bottom: 2px solid #2583fd;
		margin-top: 2px;
		padding-top: 10px;
		padding-bottom: 10px
}
/*Buscador*/
.search-box .container-search-box #buscar {
	padding: 5px;
	width: 100%;
	border: 1px solid #cccccc;
	border-radius: 5px;
	outline: none;
}
/*Filtro categorias*/
.bloque-list-posts .filtro-categorias .category-buttons {
 text-align: center;
 margin-bottom: 40px;
}
.bloque-list-posts .filtro-categorias .category-buttons a {
	font-size: 18px;
    line-height: 30px;
    font-weight: 300;
	text-transform: uppercase;
	margin: 0 2%;
	color: #21264d;
}
.bloque-list-posts .filtro-categorias .category-buttons a:hover {
	color: #ff4f52;
	text-decoration: none;
}
.bloque-list-posts .filtro-categorias .category-buttons a.active {
	color: #ff4f52;
}