/*--------------------------------------------------------------
# Filtre
--------------------------------------------------------------*/
.filters{
  margin: 1rem 0;
}
#filters{
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
#filters button{
  width: fit-content;
  margin: 0;
  height: auto;
  border: 1px solid #fff;
}
#filters button svg{
  width: 26px;
}
.wp-block-button__link {
	border-radius: 10rem;
	padding: 1.3em 2.3em !important;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	gap: .5rem;
	height: 100%;
}
#filters .wp-block-button__link:not(:hover, .is-active){
  background: transparent!important;
  border-color: #fff!important;
}
#filters .wp-block-button__link:hover{
  color: #fff!important;
}

.events .type-event{
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 2rem;
  border-radius: 20px;
  gap: 1rem;
}
.events .type-event:not(:hover){
  background: #fff!important;
}
.events > .wp-block-group:not(.filters){
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
}
.events .type-event{
  position: relative;
  overflow: hidden;
}
.events h3 a:before{
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.style-light .events a:not(.btn-text-skin):hover{
    color: #006eab;
    text-decoration: underline;
}
.event-cat{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  margin: 0;
}
.event-cat span{
  padding: .5rem;
  border-radius: 100%;
  aspect-ratio: 1/1;
  width: 52px;
  height: auto;
  display: inline-block;
}
.event-cat span{
  width: 38px;
  background-color: #006eab;
  line-height: 0;  
}
.event-cat svg {
	width: 100%;
	height: auto;
  aspect-ratio: 1/1;
}
.events .wp-block-post-title {
  font-size: 20px;
  margin: 0;
  line-height: 1.2;
}
.events .wp-block-post-title a{
  color: #006eab;
}
.events .wp-block-post-date{
  font-size: 13px;
  color: #006eab;
}
.share-container .wp-social-link-linkedin i{
    margin: 0;
    font-size: 1.5em;
    color: #fff;
}
@media only screen and (max-width: 1082px) {
.events > .wp-block-group:not(.filters) {
    grid-template-columns: 1fr!important;
  }
}