.sponsors {
    margin: 0 3%;
    width: 94%;
    margin-bottom: 30px;
}

.sponsors h2 {
    font-size: clamp(24px, 3.5vw, 60px);
    color: #032c64;
    margin-bottom: 16px;
    font-family: 'Comfortaa', cursive;
}

.viewport {
    overflow: hidden;
}

.track {
    display: flex;
    transition: transform .3s ease;
}

.slide {
    flex: 0 0 100%;
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e5e7eb;
    padding: 12px;
    background: #fff;
    min-width: 200px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
}

.card h3 {
    text-align: center;
    font: 700 18px/1.2 system-ui, sans-serif;
    margin: 6px 0;
}

.card p {
    text-align: center;
    color: #6b7280;
    font: 14px/1.45 system-ui, sans-serif;
    margin: 6px 0 12px;
}

.btn {
    display: inline-block;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font: 600 14px/1 system-ui, sans-serif;
}

.btn:hover {
    background: #1e40af;
}

.btn:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

/* Responsive : 2 cartes par ligne si vous n'utilisez PAS le carrousel (en supprimant .slide) */
@media (max-width: 900px) {
    .slide {
        gap: 12px;
    }

    .card {
        min-height: 220px;
    }
}