/* One adaptive entry point: the supplied desktop composition is used from 1024px,
   and the supplied mobile composition below it. */
.desktop-view { display: block; }
.mobile-view { display: none; }

@media (max-width: 1023px) {
  .desktop-view { display: none; }
  .mobile-view { display: block; }
}
