/* FRA Prop HQ v7.4.1 — keep the signed-out landing page separate from the app shell */

/* The public landing and authenticated workspace must never be visible together. */
#publicLanding:not(.hidden) ~ #appShell,
body.signed-out #appShell {
  display: none !important;
}

/* Keep the public page visible once auth has resolved as signed out. */
body.signed-out #publicLanding:not(.hidden) {
  display: block !important;
}
