/* Conteneur externe : garantit que tout reste dans la stats-card */
.partner-slider-container {
    width: 100%;
    height: 180px;       /* Ajuste ici selon taille souhaitée */
    position: relative;
    overflow: hidden;    /* Empêche tout débordement */
    padding: 10px 0;     
}

/* Slider interne */
.partner-slider {
    position: relative;
    width: 100%;
    height: 100%;        /* IMPORTANT : occupe tout le conteneur */
    text-align: center;
}

/* Titre */
.partner-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Une slide */
.partner-slide {
    position: absolute;
    width: 100%;
    left: 0;
    top: 30px;          /* Espace sous le titre */
    opacity: 0;
    transition: opacity 0.7s ease-in-out;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-slide.active {
    opacity: 1;
}

.partner-slide img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
}

/* Texte sous l'image */
.partner-name {
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}
