/*
Theme Name: Liminal 
Theme URI: http://www.meetliminal.com
Version: 1.0
Description: A Liminal Website
Author: Liminal
Author URI: http://www.meetliminal.com
template: bb-theme
*/

/* add custom styles to the customizer, that's just easier, ya know? */ 

/* TEMP fix for number counter on homepage (TODO: add this in Elementor) */
/* Works even if .countup is just text (no inner span) */
.countup{
  display:inline-grid;
  line-height:1;
  font-variant-numeric:tabular-nums lining-nums;
  font-feature-settings:"tnum" 1,"lnum" 1;
}
.countup::after{
  content:attr(data-target);   /* e.g., 100000 or 100,000 */
  opacity:0;                   /* reserve width, not visible */
  pointer-events:none;
  white-space:pre;
  grid-area:1 / 1;
}
/* Put the real text in the same grid cell */
.countup{ grid-template-areas:"n"; }