/* ________ Pagination des listes d'articles : query-pagination-avec-fleche ____  */




.is-style-query-pagination-avec-fleche .wp-block-query-pagination-numbers {
	display: flex;
	gap: 5px;
}

.is-style-query-pagination-avec-fleche .page-numbers {
	background-color: var(--wp--preset--color--base);
	padding: 3px 8px;
}

.is-style-query-pagination-avec-fleche .page-numbers:hover,
.is-style-query-pagination-avec-fleche .page-numbers.current {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base);
}

.is-style-query-pagination-avec-fleche .is-arrow-chevron {
	color: var(--wp--preset--color--primary);
	font-size: 30px;
}

.is-style-query-pagination-avec-fleche a.wp-block-query-pagination-previous {
	position: relative;
	padding-left: 40px;
}

.is-style-query-pagination-avec-fleche a.wp-block-query-pagination-next {
	position: relative;
	padding-right: 40px;
}



.is-style-query-pagination-avec-fleche a.wp-block-query-pagination-previous::before,
.is-style-query-pagination-avec-fleche a.wp-block-query-pagination-next::before {
	content: "»";
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	font-size: 32px;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: monospace;
	color: var(--wp--preset--color--primary);
}



.is-style-query-pagination-avec-fleche a.wp-block-query-pagination-previous::before {
	transform: rotate(180deg);
	right: auto;
	left: 10px;
	top: 5px;
}

