.actus_list {
	display: flex;
    flex-wrap: wrap;
}

.actu_wrap {
	padding: 15px 15px;
    width: 33.3333%;
}

.actu_item {
	border: 2px solid #ECD8AF;
	height: 100%;
	flex-direction: column;
	display: flex;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.actu_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Style spécifique pour les articles épinglés */
.actu_item.sticky {
    border: 2px solid #d6315f; /* Bordure rouge pour les articles épinglés */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Ombre subtile pour les épinglés */
}

/* Label "Épinglé" */
.actu_sticky_label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #d6315f;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.actu_img {
	width: 100%;
    padding-bottom: 60%;
    position: relative;
	background-color: #f5f5f5;
}

.actu_img img {
	width: 100%;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.actu_img .img_defaut {
	opacity: 0.08;
    padding: 20px;
}

.actu_cat {
	position: absolute;
    bottom: 0;
    left: 30px;
    background-color: #F68826;
    padding: 5px 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    font-size: 0.9em;
    color: white;
    font-family: 'Quicksand';
    font-weight: 400;
}

.actu_item.actualites .actu_cat {
	background-color: #7D5EA8;
}

.actu_item.evenements .actu_cat {
	background-color: #3483C5;
}

.actu_content {
	padding: 30px 35px;
	display: flex;
    flex-direction: column;
	flex: 1;
}

.actu_title {
	margin-bottom: 15px;
}

.actus_more {
	display: flex;
	justify-content: flex-end;
    margin-top: 25px;
	flex: 1;
    align-items: flex-end;
}

/* Pagination */

.pagination {
	width: 100%;
    display: flex;
    justify-content: center;
	margin-top: 30px;
}

.pagination .nav-links {
	font-family: 'Quicksand';
	font-weight: 500;
	display: flex;
    align-items: center;
}

.pagination .nav-links .page-numbers {
	padding: 7px;
}

.pagination .nav-links .page-numbers.next,
.pagination .nav-links .page-numbers.prev {
	background-image: url(/wp-content/uploads/2022/01/arrow-btn.svg);
    background-repeat: no-repeat;
    font-size: 0;
    padding: 0;
    width: 22px;
    height: 13px;
    display: inline-block;
    background-position: center;
	margin-left: 10px;
}

.pagination .nav-links .page-numbers.prev {
	transform: rotate(180deg);
	margin-left: 0px;
	margin-right: 10px;
}

.pagination .nav-links .page-numbers.current {
	color: #d6315f;
	font-weight: 800;
}

@media screen and (max-width: 991px) {
	
	.actu_wrap {
		width: 50%;
	}
	
}

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

@media screen and (max-width: 480px) {
	
	.actu_wrap {
		padding: 15px 0px;
	}
	
	.actu_content {
		padding: 30px 20px;
	}
	
}
/* Label "Épinglé" */
.actu_sticky_label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #d6315f;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.actus_list .pagination > * {
    padding: 5px;
}
.actus_list .pagination > a {
    color: #d6315f;
}