.grid_news_container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.grid_news_item {
	width: calc(33.3333% - 20px);
	-webkit-box-shadow: 0px 0px 15px 1px rgba(0 0 0 / 8%);
	box-shadow: 0px 0px 15px 1px rgb(0 0 0 / 8%);
	background-color: white;
	transition: 0.3s;
	position: relative;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
}

.grid_news_item:hover {
	transform: translateY(-4px);
	box-shadow: 0px 4px 18px rgb(0 0 0 / 23%);
}

.grid_news_item .grid_news_cat {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate(0, 50%);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 40px;
	padding-right: 30px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	font-family: 'intro';
}

.grid_news_img {
	position: relative;
	padding-bottom: 170px;
	background: center / cover;
	background-repeat: no-repeat;
}

.grid_news_content {
	padding: 40px 40px 25px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.grid_news_content_top {
	flex: 1;
}

.grid_news_content .small_title a {
	color: var(--oxy_color_1);
	margin-bottom: 10px;
}

.grid_news_date {
	color: var(--oxy_color_5);
	margin-bottom: 10px;
	font-weight: 600;
}

.grid_news_more {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 0;
	margin-top: 25px;
	transition: .3s;
}

.grid_news_more::before {
	left: -40px;
	width: calc(100% - 73px);
}

.grid_news_more::after {
	right: 100px;
	left: auto;
}

.grid_news_more:hover {
	transform: translate(10px);
}

.grid_news_more:hover::before {
	width: calc(100% - 49px);
	left: -50px;
}

.grid_news_more:hover::after {
	right: 85px;
}

/* Filtre  */

.wpgb-button-facet .wpgb-inline-list {
	justify-content: center !important;
	margin: 0 !important;
	width: 100%;
}

.wpgb-button-facet {
	overflow: auto;
	margin-right: -20px;
	margin-left: -20px;
	padding-left: 20px;

}


@media screen and (max-width: 1300px) {

	.grid_news_container {
		justify-content: center;
	}

}


@media screen and (max-width: 1100px) {

	.grid_news_container.grid_news_section {
		overflow: auto;
		scroll-snap-type: x mandatory;
		margin-right: -20px;
		padding-top: 30px;
		padding-bottom: 30px;
		flex-wrap: unset;
		margin-left: -20px;
		justify-content: unset;
		padding-left: 20px;
	}

	.grid_news_container.grid_news_section .grid_news_item {
		flex-shrink: 0;
		scroll-snap-align: start;
		width: 45%;
	}

	.grid_news_item {
		width: calc(50% - 40px);
	}

}

@media screen and (max-width: 991px) {

	.grid_news_content {
		padding: 40px 28px 25px;
	}

	.grid_news_more::before {
		left: -20px;
		width: calc(100% - 93px);
	}

	.grid_news_container {
		gap: 20px;
	}

	.grid_news_item .grid_news_cat {
		padding-left: 28px;
	}



}

@media screen and (max-width: 767px) {
	.grid_news_item {
		width: 100%;
	}

	.grid_news_container.grid_news_section .grid_news_item {
		width: 95%;
	}

}

@media screen and (max-width: 480px) {

	.grid_news_more::before {
		left: -30px;
		width: calc(100% - 84px);
	}

}