.lbi_articles_wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	align-items: stretch;
}

.lbi_single_article {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.lbi_single_article_box h2 {
	line-height: 1;
	margin: 12px 0;
}

.lbi_single_article_box {
    height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
} 

.lbi_single_article img {
	width: 100%;
	height: auto;
	display: block;
    object-fit: cover;
	height: 280px;
}

.lbi_single_article_infos {
    display: flex;
    gap: 5px;
    font-size: 0.8em;
    color: rgba(9,19,55,0.36);
}

.lbi_single_article_lire .btn-annonces {
    width: max-content;
	margin-top: 12px;
	font-size: 0.8em;
	margin-bottom: 15px;
}

.lbi_pagination_inner {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.lbi_articles_pagination {
	text-align: center;
	margin: 2rem 0;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	line-height: 1;
}

.lbi_next_btn, .lbi_prev_btn {
	padding-top: 3px;
}

.lbi_next_btn:hover path, .lbi_prev_btn:hover path {
	fill: #ffeb00;
}

.lbi_page_btn {
	border: none;
	background: #fff;
	cursor: pointer;
	transition: background 0.2s;
	font-size: 1.5rem;
}

.lbi_page_btn:hover,
.lbi_page_btn.active {
	color: #ffeb00;
}

/* Responsive */

@media (max-width: 767px) {
	.lbi_articles_wrapper {
		grid-template-columns: 1fr;
	}
}
