/* At Work — what differs from the shared dark palette.
 *
 * The palette itself lives in shared/css/checkout.css under
 * :root[data-theme="dark"], selected by `theme: 'dark'` in src/brands/work.ts.
 * Only put a token here if At Work genuinely needs a value the shared dark
 * palette does not give it — and match that selector, because a bare :root is
 * less specific and would lose to it.
 */
:root[data-theme="dark"] {
  /* At Work's lockup is much wider than the RNM wordmark the shared default is
     drawn for; inheriting 22px-tall/auto-wide rendered it oversized. */
  --co-logo-height:      auto;
  --co-logo-width:       200px;
}
body {
  background-image: url('../assets/Gradient_BG_AtWork.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
