/* UTF-8 à jamais */
.liste_agenda{
	margin:32px auto;
	display:flex;
	flex-flow:row wrap;
	row-gap:24px;
	column-gap:32px;
}
.liste_agenda li{
	width:180px;
}
.liste_agenda li.vide{
	border-left:1px solid #ddd;
	width:0;
}
.liste_agenda li.vide.modulo5,
.liste_agenda li.vide.dernier{
	display:none;
}
.liste_agenda li.date_sep{
	width:100%;
}
.liste_agenda li.date_sep h3{
	font-family:"NeueHansKendrick-Bold";
	font-size:1.71em;
	line-height:1.25;
	text-transform:capitalize;
}
.liste_agenda li.date_sep h3 span{
	font-family:"NeueHansKendrick-ExtraLightItalic";
}
.liste_agenda li a{
	text-decoration:none;
}
.liste_agenda li a img{
	position:relative;
	z-index:1;
	border-radius:8px;
}
.liste_agenda li a .date{
	background:#000;
	border-radius:4px;
	padding:8px 10px;
	font-family:"NeueHansKendrick-Bold";
	font-size:0.79em;
	line-height:1.45;
	text-transform:uppercase;
	color:#fff;
	display:flex;
	margin-top:-10px;
	margin-left:-1px;
	position:relative;
	width:140px;
	z-index:2;
}
.liste_agenda li.sans_image a .date{
	margin-top:0;
}
.liste_agenda li a h2{
	font-family:"NeueHansKendrick-SemiBold";
	font-size:1.29em;
	line-height:1.33;
	margin:10px 0 8px;
}
.liste_agenda li a .ville{
	color:#777;
}
/*------------- UNE ACTU --------*/
.agenda{
	padding:40px 0 56px;
}
.agenda h1{
	font-family:"NeueHansKendrick-Bold";
	font-size:4em;
	line-height:1.14;
	text-align:center;	
}
.agenda .infos{
	margin:32px 0 56px;
	border-top:1px solid rgba(0, 0, 0, 0.1);
	border-bottom:1px solid rgba(0, 0, 0, 0.1);
	padding:12px 0;
	display:flex;
	justify-content:space-between;
}
.agenda .infos .date{
	line-height:1.14;
	font-family:"NeueHansKendrick-SemiBold";
	width:50%;
}
.agenda .infos .partager{
	text-decoration:none;
	display:flex;
	align-items:center;
	gap:8px;
	color:#777;
	line-height:1.14;
}
.agenda .image_principale{
	display:flex;
	flex-flow:column nowrap;
	gap:4px;
	justify-content:center;
	align-items:center;
	margin-bottom:56px;
}
.agenda .image_principale span{
	color:#777;
	font-size:0.86em;
}
.agenda .image_principale img{
	border-radius:12px;
}
.agenda p{
	width:680px;
	margin:0 auto;
	font-family:"NeueHansKendrick-Light";
	font-size:1.29em;
	line-height:1.5;
}
.agenda p.adresse{
	margin-bottom:24px;
	font-family:"NeueHansKendrick-SemiBold";
}
/*------------------------------------------
						RESPONSIVE
------------------------------------------*/
@media screen and (max-width:1279px){
	.liste_agenda li.vide.modulo5{
		display:block;
	}	
	.liste_agenda li.vide.modulo4,
	.liste_agenda li.vide.dernier{
		display:none;
	}
	.agenda h1{
		font-size:3.5em;	
	}
	.agenda .infos .date{
		width:calc(100% - 128px);
	}
}
@media screen and (max-width:1023px){
	.liste_agenda li.vide.modulo5,
	.liste_agenda li.vide.modulo4{
		display:block;
	}	
	.liste_agenda li.vide.modulo3,
	.liste_agenda li.vide.dernier{
		display:none;
	}
	.agenda h1{
		font-size:3em;
	}
	.agenda .image_principale img{
		max-width:100%;
	}
}
@media screen and (max-width:767px){
	.liste_agenda{
		display:flex;
		flex-flow:row wrap;
		
		justify-content:center;
		gap:24px;
	}
	.liste_agenda li.vide,
	.liste_agenda li.vide.dernier,
	.liste_agenda li.vide.modulo5,
	.liste_agenda li.vide.modulo4,
	.liste_agenda li.vide.modulo3{
		display:none;
	}
	.liste_agenda li.date_sep h3{
		text-align:center;
		border-bottom:1px solid #ddd;
		padding-bottom:16px;
	}	
	.agenda h1{
		font-size:2.29em;
	}
	.agenda .infos{
		flex-flow:column nowrap;
		gap:16px;
	}
	.agenda .infos .date{
		width:100%;
	}
	.agenda p{
		width:100%;
		font-size:1.14em;
	}
}