/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 26 2026 | 11:56:25 */
/* ==========================================================================
   DESIGN SYSTEM (LE CERVEAU)
   ========================================================================== */
:root {
    --vui-content-width: 1400px;
    --vui-gutter: 20px;
    --vui-primary-color: #173AE5; /* Exemple pour ton bleu */
}

/* ==========================================================================
   LAYOUT (LES RÈGLES DE STRUCTURE)
   ========================================================================== */

.grid-container {
    width: 100%;
    max-width: calc(var(--vui-content-width) + (var(--vui-gutter) * 2)) !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--vui-gutter);
    padding-right: var(--vui-gutter);
}
/* ==========================================================================
   LAYOUT (FULL-WIDTH)
   ========================================================================== */

/* class images full-width */
.vui-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}