/**
 * CSS ISOLÉ - PORTFOLIO MOBILE UNIQUEMENT
 * Centrage des items portfolio en mode mobile seulement
 */

/* Mobile UNIQUEMENT (<768px) : centrer les items */
@media (max-width: 767px) {
    #portfolio-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
    }

    .project-card {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
}

