/* ========================================================================== */
/* ETHNOS R473 — BUG 03 : faux « double onglet » sous le profil connecté     */
/* Base : R472. Périmètre strict : ombre 3D du profil compact uniquement.    */
/* Cause : R191 ajoute une marche opaque 4px sous le profil (7px au hover),   */
/* qui se lit comme un second onglet sur le nouveau fond flouté.              */
/* Conserve le léger relief interne + l'ombre diffuse, retire la marche dure. */
/* ========================================================================== */

html body .memberProfileCompact:not(.isExpanded){
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 22px rgba(0,0,0,.24) !important;
}

html body .memberProfileCompact:not(.isExpanded):hover,
html body .memberProfileCompact:not(.isExpanded):focus-visible{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 17px 30px rgba(0,0,0,.32) !important;
}

html body .memberProfileCompact:not(.isExpanded):active{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 7px 15px rgba(0,0,0,.26) !important;
}
