/* Supprimer marges et padding du bloc parent */
.mod-header {
    padding: 0 !important;
    margin: 0 !important;
}

/* Bloc contenant le logo */
.mod-header-part {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem 1rem !important;
    margin: 0 auto !important;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-height: 220px; /* un peu plus que le logo pour laisser respirer */
    overflow: hidden;
}

/* Logo agrandi */
.mod-header-part img {
    max-height: 200px !important;
    height: auto !important;
    width: auto !important;
    margin: 0 auto !important;
    display: block !important;
}

@media (max-width: 768px) {
  .mod-header-part img {
    max-height: 120px !important;
  }
}

.mod-header-part img:hover {
    transform: scale(1.05);
}