.actus_list {
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
}

.actu_item {
	display: block;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
    display: flex;
	flex-direction: column;
	transition: .5s;
	width: calc(33.333% - 30px);
}

.actu_item:hover {
	-webkit-box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 15%); 
	box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 15%);
}

.actu_item_img {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.actu_item_cat {
	position: absolute;
    right: 20px;
    top: 20px;
    padding: 6px 20px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .15rem;
	font-weight: 500;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2); 
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}

.actu_item_content {
	padding: 20px 35px;
	display: flex;
    flex-direction: column;
	justify-content: flex-start;
	flex: 1;
}

.actu_item_date {
	padding-bottom: 15px;
    border-bottom: 1px solid var(--color_element);
    margin-bottom: 15px;
	font-size: 0.85rem;
}

.actu_item_title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	transition: .3s;
}

.actu_item:hover .actu_item_title {
	color: var(--color_brick) !important;
}

.actu_item_excerpt {
	flex: 1;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

.actu_item_more {
	display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Home Page */

.actus_list.actus_hp {
	display: grid;
	grid-template-columns: repeat(24, 1fr);
	grid-template-rows: repeat(4, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 40px;
}

.actus_hp .actu_item {
	-webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%); 
	box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
	width: auto;
}

.actus_hp .actu_item:hover {
	-webkit-box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 20%); 
	box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 20%);
}

.actus_hp .actu_item:first-child {
	grid-area: 1 / 1 / 5 / 12;
}

.actus_hp .actu_item:nth-child(2) {
	grid-area: 1 / 12 / 3 / 25;
}

.actus_hp .actu_item:last-child {
	grid-area: 3 / 12 / 5 / 25;
}

.actus_hp .actu_item:first-child .actu_item_content {
	flex: 1;
}

.actus_hp .actu_item:not(:first-child) {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.actus_hp .actu_item:not(:first-child) .actu_item_img {
	width: 40%;
	height: auto;
	position: static;
}

.actus_hp .actu_item:not(:first-child) .actu_item_cat {
	top: 15px;
	box-shadow: none;
}

.actus_hp .actu_item:not(:first-child) .actu_item_content {
	width: 60%;
	display: flex;
    flex-direction: column;
	justify-content: flex-start;
	flex: none;
}

.actus_hp .actu_item:not(:first-child) .actu_item_date {
	margin-bottom: 0px;
	border-bottom: none;
	padding-bottom: 25px;
}

.actus_hp .actu_item:not(:first-child) .actu_item_title {
	flex: 1;
}

.actus_hp .actu_item:not(:first-child) .actu_item_excerpt {
	display: none;
}

.actus_hp .actu_item:not(:first-child) .actu_item_more {
	border-top: 1px solid var(--color_element);
	padding-top: 17px;
	margin-top: 7px;
}

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

	.actus_list {
		gap: 30px;
	}

	.actu_item {
		width: calc(33.333% - 20px);
	}

}

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

	.actus_list.actus_hp {
		display: block;
	}

	.actus_hp .actu_item {
		margin-bottom: 40px;
	}

	.actu_item {
		width: calc(50% - 15px);
	}

	.actu_section1 .actu_item {
		width: 100%;
	}

}

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

	.actus_hp .actu_item:not(:first-child) {
		flex-direction: column;
	}

	.actus_hp .actu_item:not(:first-child) .actu_item_img {
		width: 100%;
		height: 200px;
	}

	.actus_hp .actu_item:not(:first-child) .actu_item_content {
		width: 100%;
	}

	.actus_hp .actu_item:not(:first-child) .actu_item_date {
		padding-bottom: 15px;
		border-bottom: 1px solid var(--color_element);
		margin-bottom: 15px;
	}

	.actus_hp .actu_item:not(:first-child) .actu_item_more {
		border: none;
		margin-top: 20px;
		padding-top: 0;
	}

	.actu_item {
		width: 100%;
	}

}

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

	.actu_item_content {
		padding: 20px 20px;
	}

	.actu_item_title {
		font-size: 1.2rem;
	}

}