/* Home */

.home .actus_slider .slick-arrow {
	top: -65px;
	right: 15px;
	left: auto;
	background-image: none;
	background-size: contain;
	width: 45px;
	height: 46px;
	background-repeat: no-repeat;
}

.home .actus_slider .slick-arrow::before {
	display: none;
}

.home .actus_slider .slick-arrow.slick-prev {
	background-image: url(/wp-content/uploads/2022/05/arrow_left.svg);
	right: 70px;
}

.home .actus_slider .slick-arrow.slick-next {
	background-image: url(/wp-content/uploads/2022/05/arrow_right.svg);
}

/* ---------- */

.actus_slider {
	position: relative;
	padding-bottom: 50px;
}

.actus_slider .slick-list {
	overflow: hidden;
}

.actus_slider .slick-track {
	display: flex;
	margin: auto;
}

.actu_wrap {
	padding: 0 15px;
}

.actu_item {
	border: 2px solid #ECD8AF;
	height: 100%;
	flex-direction: column;
	display: flex;
	position: relative;
	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écial 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 mettre en évidence */
}

/* Label "Épinglé" */
.actu_item.sticky .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;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover !important;
}

.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;
	background-color: white;
}

.actu_title {
	margin-bottom: 15px;
}

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

/* Dots */

.no_slider.actus_slider {
	padding-bottom: 0px;
}

.no_slider.actus_slider .slick-dots {
	display: none !important;
}

.actus_slider .slick-dots {
	bottom: 0;
}

.actus_slider .slick-dots li {
	margin: 0 8px;
}

.actus_slider .slick-dots li button::before {
	display: none;
}

.actus_slider .slick-dots li button {
	border: 1px solid #262626;
	border-radius: 50px;
	width: 15px;
	height: 15px;
}

.actus_slider .slick-dots .slick-active button {
	background-color: #262626;
}

@media screen and (max-width: 991px) {
	.no_slider.actus_slider.count_3 .slick-dots {
		display: block !important;
	}
	
	.no_slider.actus_slider.count_3 {
		padding-bottom: 50px;
	}
}

@media screen and (max-width: 767px) {
	.no_slider.actus_slider.count_2 .slick-dots {
		display: block !important;
	}
	
	.no_slider.actus_slider.count_2 {
		padding-bottom: 50px;
	}
	
	.home .actus_slider .slick-arrow {
		top: -40px;
	}
}

.btn_actus {
	text-align: center;
}

.btn_actus .ct-link-button.main_btn {
	display: inline-block;
	padding: 10px 20px;
	margin-top: 10px;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.btn_actus .ct-link-button.main_btn {
		font-size: 14px;
	}
}

/* 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);
}