/* ============================================================
   MINALE BARLOW — Base / reset
   Sets the dark ground, default type, and global niceties.
   ============================================================ */
*{ box-sizing:border-box; }

html{ -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-sans);
  font-size:var(--text-md);
  line-height:var(--lh-normal);
  -webkit-text-size-adjust:100%;
}

a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
button{ font-family:inherit; }

/* keep timecodes / counters from jittering on a proportional face */
[data-timecode], .mb-tc, .tabular{
  font-variant-numeric:tabular-nums; font-feature-settings:"tnum" 1;
}

/* a hairline divider */
.mb-hairline{ height:1px; background:var(--border); border:0; margin:0; }
