/*
 Theme Name: Kadence Child
 Theme URI: https://www.kadencewp.com/
 Description: Thème enfant pour Kadence
 Author: Ton Nom
 Template: kadence
 Version: 1.0
*/

/* Marges */
.entry-content-wrap,
.content-area {
	margin: 0 !important;
}

/* Menus */
.menu-title > a {
    cursor: default;
    pointer-events: none;
}

/* Footer */
.footer_nav_ul {
	list-style-type: none;
	margin: 0;
	padding: 0 !important;
}
.footer_nav_li {
	display: flex;
	flex-direction: column;
}

/* Bandeau global */
.partners-marquee {
  overflow: hidden;
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
}

/* Le rail contenant les deux groupes */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

/* Chaque groupe de logos */
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* empêche de se réduire */
}

/* Logo + espacement */
.marquee-item {
  padding: 0 40px;
}

.marquee-item img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  transition: opacity .3s, filter .3s;
}

/* Hover (optionnel) */
.marquee-item img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Animation fluide infinie */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 640px) {
  .marquee-item img {
    height: 40px;
  }
  .marquee-item {
    padding: 0 20px;
  }
}