.content-article {
	max-height: 375px;
    overflow: hidden;
}
.pagination {
    display: flex;
    justify-content: center!important;
	gap:20px
}
.page-numbers {
	padding: 20px;
    border: 1px solid #1e1e1e;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
	font-family:'Fira Sans Condensed Regular', sans-serif;
	color: #000000;
	transition: all 0.3s ease-in-out;
}
.prev.page-numbers, .next.page-numbers {
    border-color: #B86147;
	background-color: #ffffff!important;
	transition: all 0.3s ease-in-out;
}
.prev.page-numbers:hover img {
    transform:rotate(90deg);
	transition: all 0.3s ease-in-out;
}
.next.page-numbers:hover img {
    transform:rotate(-90deg);
	transition: all 0.3s ease-in-out;
}
.page-numbers:hover {
    border-color: #B86147;
    background-color: #B86147;
    color: white;
}
.page-numbers.current {
    border: 1px solid #B86147;
    border-radius: 5px;
	background-color: #B86147;
	color:white;
}
.page-numbers img {
    height: auto!important;
	max-width: max-content!important;
}

.elementor-widget-theme-post-title {
    display: block!important;
}
.template-separator {
	margin: 1.563em 0em!important;
}
.filtre-categories {
    font-family: 'Fira Sans Condensed Regular';
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding-left: 20px;
}
ul.filtre-categories li {
    text-decoration: underline;
}
ul.filtre-categories li a{
    color:#1e1e1e;
	font-size:18px;
	transition: all 0.3s ease-in-out;
}
ul.filtre-categories li a:hover{
    color:#B86147;
}


.empty-result {
	font-family: 'Fira Sans Condensed Regular';
}
.empty-result ul {
    list-style: none;
    padding: 0;
}


@media(max-width:1199px){
	.filtre-categories {
		display: grid; 
     	grid-template-columns: repeat(3, 1fr);
	}
}
@media(max-width:991px){
	.filtre-categories {
		display: grid; 
     	grid-template-columns: repeat(2, 1fr);
	}
}