/*
 * Member-only presentation styles.
 *
 * Keep this file loaded only from the member layout. Admin assets must not
 * import prototype Tailwind or member background styles.
 */

.member-background-shell {
  background-color: #fff8f2;
  background-image: var(--member-background-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 48rem) {
  .member-background-shell {
    background-position: center top;
    background-size: auto 100vh;
    background-attachment: scroll;
  }
}
