/* Style spécifique à la page sponsors */

.partners h2 {
    text-align: center;
    margin-bottom: 30px;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.partner {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.partner img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 6px;
    background-color: white;
}

.partner a {
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.05rem;
    flex: 1;
}

.partner a:hover {
    text-decoration: underline;
}

/* Responsive : sur mobile, affichage vertical */
@media screen and (max-width: 600px) {
    .partner {
        flex-direction: column;
        text-align: center;
    }

    .partner img {
        margin-bottom: 10px;
        width: 100px;
        height: 100px;
    }

    .partner a {
        font-size: 1rem;
    }
}
