/* ============================================================
   Carte Logo — vc_logo_card.css
   ============================================================ */

.lc-carte {
    display: flex;
    width: 280px;
    height: 280px;
    padding: 32px 24px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #BBF9B5;
    box-sizing: border-box;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.lc-carte:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    background: #a8f4a1;
}

.lc-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.lc-carte:hover .lc-logo {
    transform: scale(1.08);
}

.lc-logo img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .lc-carte {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .lc-carte {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
}
