/* ========================================================================== */
/* ETHNOS R472 — BUG 02 : flou du fond sur toute la largeur                  */
/* Base : R471. Périmètre strict : décor de fond connecté uniquement.        */
/* Cause prouvée : R470 tronquait le pseudo-fond à droite de la largeur du   */
/* rail contexte (--ethnos-context-width), laissant cette bande non floutée. */
/* Cette feuille restaure les bornes originales de R468 (Home) et R469       */
/* (Maps/Tchat), sans toucher aux composants, dimensions ni interactions.    */
/* ========================================================================== */

/* Accueil connecté : R468 utilisait inset:-12px. R470 avait remplacé le
   bord droit par calc(var(--ethnos-context-width) - 12px). */
html.ethnosConnectedDiscoveryHome .memberLayout::before{
  right:-12px !important;
}

/* Maps / Tchat connectés : R469 utilisait inset:0. R470 avait remplacé le
   bord droit par var(--ethnos-context-width). */
html.ethnosConnectedDiscoveryShell[data-ethnos-ui="discord-r111"] body.r190WorldViewOpen .memberLayout::before,
html.ethnosConnectedDiscoveryShell[data-ethnos-ui="discord-r111"] body.isTchatDrawerOpen .memberLayout::before,
html.ethnosConnectedDiscoveryShell[data-ethnos-ui="discord-r111"] body.isTchatDrawerClosing .memberLayout::before,
html.ethnosConnectedDiscoveryShell[data-ethnos-ui="discord-r111"] body.isTchatDrawerClosingActive .memberLayout::before{
  right:0 !important;
}
