.cont-actus .actus-items {
	gap: 2em;
	display: grid;
	grid-template-columns: repeat(3,1fr);
}

.cont-actus .actus-items > div {
	width: unset!important;
	background-color: #ffffff;
}




/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.cont-actus {
		padding-left: 5%;
		padding-right: 5%;
	}

	.cont-actus .actus-items {
		gap: 1em;
		grid-template-columns: repeat(2,1fr);
	}

	.item-actu .actu-bg {
		height: 125px;
	}

	.item-actu .actu-infos {
		font-size: 9px;
	}

	.item-actu .actu-infos a h3 {
		line-height: 16px;
		font-size: 9px!important;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

	.cont-actus {
		padding-left: 5%;
		padding-right: 5%;
	}

	.cont-actus .actus-items {
		gap: 1em;
		grid-template-columns: repeat(3,1fr);
	}

	.item-actu .actu-bg {
		height: 160px;
	}

	.item-actu .actu-infos a h3 {
		line-height: 20px;
		font-size: 13px!important;
	}

}

/*mobile and tablet*/
@media (max-width: 1024px) {

}

/*desktop*/
@media (min-width: 1025px) {

	.cont-actus .actus-items {
		gap: 3em;
	}

	.cont-actus {
		padding-left: 15%;
		padding-right: 15%;
	}

}

/*pc portable*/
@media (min-width: 1025px) and (max-width: 1700px) {

	.cont-actus .actus-items {
		gap: 2em;
	}

	.cont-actus {
		padding-left: 10%;
		padding-right: 10%;
	}

}


/*RESPONSIVE*/
