.footer-custom {
  background-color: #acacac;
  color: black;
  width: 100%;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
  padding: 0 0;
  height: 2.5rem;

}

.footer-custom .footer-content {
    height: 100%;
  align-items: center;
  display: flex;
  align-items: center;     
  justify-content: center; 
  flex-wrap: wrap;         
  gap: 8px;               
}

.footer-custom .footer-content span {
  display: flex;            
  align-items: center;
  gap: 5px;
  line-height: 1;            
}


.footer-logo {
  max-height: 35px; 
  width: auto;
  object-fit: contain;
}

.footer-custom .footer-link {
  color: black;
  text-decoration: underline;
}

.footer-custom .footer-link:hover {
  color: #d1e7ff;
}
/*
@media (max-width: 768px) {
  .footer-custom {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 0;
  }

  .footer-custom .footer-content {
    width: 100%;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .footer-logo {
    margin-bottom: 0.5rem;
  }
}
*/
@media (max-width: 768px) {
    .footer-custom{
        width: 100%;
    height: auto;
    height: auto;
    }
  .footer-custom .footer-content span {
    
    flex-direction: column; /* texte et logo en colonne */
    gap: 0.5rem;
  }
}

