.section_actu {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}

#shortcode-39-14538 .wpgb-facet-title{
	display: none;
}

.actu_wrapper {
	display: flex;
	flex-direction: column;
	background-color: white;
}

.actu_wrapper img:not(.image_default) {
	object-fit: cover;
}

.actu_wrapper img, .actu_wrapper .image_default {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #1d1d1b;
	display: block;
	border-bottom: 1px solid #f7f2e5;
	transition: .5s;
}

.actu_item_img_link {
	overflow: hidden;
}

.actu_wrapper .image_default {
	padding: 60px;
}

.actu_wrapper img:hover, .actu_wrapper .image_default:hover {
	transform: scale(1.3);
}

.actu_item_content {
	padding: 20px 30px;
	padding: 20px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.actu_item_content_infos {
	flex: 1;
}

.actu_item_title {
	font-size: 1.4em;
	color: #1d1d1b;
	transition: .3s;
}

.actu_item_title:hover {
	color: #cc0f09;
}

.actu_item_date {
	font-size: 0.8em;
	color: gray;
	margin-bottom: 3px;
}

.actu_item_more {
	justify-content: flex-end;
	margin-top: 15px;
	font-size: 1em;
}

/* Filters */

.wpgb-checkbox-control {
	border-color: #cc0f09 !important;
    border-radius: 0px !important;
    height: 16px !important;
	width: 16px !important;
	margin-top: 2px;
}

.wpgb-facet .wpgb-checkbox-facet .wpgb-checkbox[aria-pressed="true"] .wpgb-checkbox-control {
	border-color: #cc0f09 !important;
    background-color: #cc0f09 !important;
}

.wpgb-facet .wpgb-search-facet input[type="search"], .wpgb-facet .wpgb-autocomplete-facet input[type="search"] {
	border-width: 1px !important;
    border-radius: 0 !important;
    background-color: white !important;
}

.wpgb-facet .wpgb-checkbox-label {
	font-size: 14px !important;
	font-weight: 500;
}

.wpgb-facet .wpgb-hierarchical-list li:not(:first-child) {
	margin-top: 8px !important;
}

.wpgb-facet .wpgb-checkbox-facet .wpgb-checkbox[aria-pressed="true"] .wpgb-checkbox-control:after {
	display: none !important;
}

/* Pagination */

.wpgb-facet .wpgb-pagination {
	display: flex !important;
	justify-content: flex-end;
    margin-top: 50px !important;
}

.wpgb-facet .wpgb-pagination li {
	display: flex !important;
    align-items: center;
}

.wpgb-facet .wpgb-pagination li a {
	color: #1d1d1b;
}

.wpgb-facet .wpgb-pagination li a[aria-current] {
	color: white !important;
    background-color: #cc0f09;
}

.wpgb-facet .wpgb-pagination li:last-child a:not([aria-current='true']){
	background-image: url(/wp-content/uploads/2021/11/arrow.svg);
    background-repeat: no-repeat;
    height: 10px;
    width: 10px;
    font-size: 0px;
}

.wpgb-facet .wpgb-pagination li:first-child a:not([aria-current='true']) {
	background-image: url(/wp-content/uploads/2021/11/arrow.svg);
    background-repeat: no-repeat;
    height: 10px;
    width: 10px;
    transform: rotate(180deg);
    font-size: 0px;
}

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

	.section_actu {
		grid-template-columns: 1fr;
	}

}