/* ===========================
   HEADER CABINET LAWRENCE
============================ */

.cl-main-header {
    width: 100%;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
}

.cl-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* --------- Bloc gauche : Logo + FAQ | Qui sommes-nous --------- */

.cl-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    min-width: 0;
}

/* Lien logo qui entoure l'image */
.cl-header-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Image du logo */
.cl-header-logo-img {
    display: block;
    width: 60px;
    /* ajuste ici 50–80px selon ce que tu préfères */
    height: auto;
}


/* Sous-menu FAQ / Qui sommes-nous */
/* Bloc vertical sous le logo */
.cl-header-meta-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cl-header-meta-vertical a {
    text-decoration: none;
    color: #5f6b7c;
    transition: color 0.2s ease;
}

.cl-header-meta-vertical a:hover {
    color: #0f172a;
}



/* --------- Bloc droit : segments clients + user menu --------- */

.cl-header-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    min-width: 0;
    margin-left: auto;
    padding-left: 2.5rem;
    border-left: 1px solid rgba(15, 23, 42, 0.06);
}

/* Menu des segments clients */
.cl-header-left {
    display: flex;
    flex-direction: row;
    /* << au lieu de column */
    align-items: center;
    gap: 1.3rem;
    /* espace entre logo et FAQ / Qui sommes-nous */
    min-width: 0;
}


.cl-header-primary {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cl-header-primary a {
    text-decoration: none;
    color: #6b7280;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.2s ease;
}

.cl-header-primary a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #004366;
    transition: width 0.2s ease;
}

.cl-header-primary a:hover {
    color: #111827;
}

.cl-header-primary a:hover::after {
    width: 100%;
}


/* ===========================
     RESPONSIVE
  ============================ */

@media (max-width: 991px) {
    .cl-header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cl-header-left {
        justify-content: center;
    }

    .cl-header-right {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        padding-top: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cl-header-primary {
        gap: 1.2rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .cl-header-meta {
        align-items: center;
        text-align: center;
    }
}