.home-partners-section {
    background: #f4f6f0;
    padding: 52px 0 48px;
    overflow: hidden;
}
.partners-heading {
    text-align: center;
    margin-bottom: 36px;
}
.partners-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    color: #0D5C2E;
    display: block;
}
.partners-label-line {
    width: 40px; height: 3px;
    background: #F5C518;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Ticker wrap */
.partners-ticker-wrap {
    position: relative;
    overflow: hidden;
    padding: 16px 60px;
}

/* Flèches latérales */
.partners-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid #0D5C2E;
    background: #fff;
    color: #0D5C2E;
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    transition: background .2s, color .2s, box-shadow .2s;
}
.partners-arrow:hover {
    background: #0D5C2E;
    color: #fff;
    box-shadow: 0 4px 18px rgba(13,92,46,.3);
}
.partners-arrow-prev { left: 10px; }
.partners-arrow-next { right: 10px; }

/* Fondu bords */
.partners-fade {
    position: absolute; top: 0; bottom: 0;
    width: 80px; z-index: 5; pointer-events: none;
}
.partners-fade-left  { left: 0;  background: linear-gradient(to right, #f4f6f0 30%, transparent); }
.partners-fade-right { right: 0; background: linear-gradient(to left,  #f4f6f0 30%, transparent); }

/* Rangée statique (peu de partenaires — pas de défilement) */
.partners-static {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
}

/* Ticker */
.partners-ticker {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

/* Carte logo */
.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 10px;
    width: 160px;
    height: 110px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8eceb;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: box-shadow .2s, transform .2s, border-color .2s;
    text-decoration: none;
}
.partner-logo-item:hover {
    box-shadow: 0 8px 28px rgba(13,92,46,.14);
    transform: translateY(-4px);
    border-color: #0D5C2E;
    text-decoration: none;
}
.partner-logo-item img {
    max-height: 52px;
    max-width: 120px;
    object-fit: contain;
    display: block;
}
.partner-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0D5C2E, #1a8c45);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .04em;
}
.partner-name-label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

/* Petits telephones : les 60px de padding lateral (place pour les
   fleches) laissent trop peu de place au contenu sur un ecran de
   ~375px de large. */
@media (max-width: 480px) {
    .partners-ticker-wrap { padding: 12px 40px; }
    .partners-arrow { width: 34px; height: 34px; font-size: 12px; }
    .partners-arrow-prev { left: 4px; }
    .partners-arrow-next { right: 4px; }
    .partners-fade { width: 40px; }
}
