.cont-all-actus {
	gap: 1.5em;
	row-gap: 2em;
	display: grid;
	grid-template-columns: repeat(3,1fr);
}


.item-actu {
	display: flex;
	text-align: left;
	position: relative;
	flex-direction: column;
	clip-path: polygon(100% 0, 100% 95%, 95% 100%, 0 100%, 0 0);
}

.item-actu > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.item-actu * {
	font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
}

.item-actu .bg-actu {
	height: 220px;
	background-size: cover;
	background-color:  #F2F4F5;
	background-position: center;
	background-repeat: no-repeat;
}

.item-actu .cont-actu {
	padding: 1.5em;
	background-color: var( --e-global-color-primary );
}

.item-actu .cont-actu h3 {
	color: #ffffff;
}

.item-actu .cont-actu .cont-categories span {
	color: var( --e-global-color-313579c );
}

.cont-categories {
	gap: 0.5em;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}
.cont-categories span + span {
	padding-left: 0.5em;
	position: relative;
	display: flex;
	align-items: center;
}

.cont-categories span + span:before {
	content: "";
	position: absolute;
	left: 0;
	width: 1px;
	height: 15px;
	opacity: 0.7;
	background-color: var( --e-global-color-313579c );
}

.slide-actus .slick-track {
	display: flex !important;
}

.slide-actus .slick-slide {
	height: inherit !important;
}

.slide-actus .slick-arrow {
	width: 20px;
	height: 20px;
	position: absolute;
	top: -15%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("/wp-content/uploads/ac_assets/actus/arrow-accent.svg");
}

.slide-actus .slick-arrow:before {
	display: none;
}

.slide-actus .btn-next {
	right: 19%;
	transform: rotate(0deg);
}

.slide-actus .btn-prev {
	left: 78%;
	transform: rotate(180deg);
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.cont-all-actus {
		gap: 2em;
		padding: 0 8%;
		grid-template-columns: repeat(1,1fr);
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

	.cont-all-actus {
		gap: 2em;
		padding: 0 5%;
		grid-template-columns: repeat(2,1fr);
	}

}

/*mobile and tablet*/
@media (max-width: 1024px) {

}

/*desktop*/
@media (min-width: 1025px) {


}

/*pc portable*/
@media (min-width: 1025px) and (max-width: 1700px) {


}


/*RESPONSIVE*/
