/*
Theme Name:  BizPress
Template:    bricks
Version:     3.6
Author:      Trevor Roberts (TrevorSphere)
Author URI:  https://trevorsphere.com
Text Domain: bricks-child
Copyright (c) 2026 Trevor Roberts (TrevorSphere).
All rights reserved.
*/

/* ======================================================
   Premium Clock
   Author: Trevor Roberts (TrevorSphere)
   Version: 3.6
====================================================== */
.clock {display: inline-flex;align-items: center;gap: 2px;font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;font-variant-numeric: tabular-nums;font-feature-settings: "tnum";font-weight: 500;letter-spacing: .06em;line-height: 1;}

/* digits */
.clock .digit {display: inline-block;width: 1ch;text-align: center;transition: transform .18s ease;}

/* animation */
.clock .digit.changed {transform: translateY(-8%);}

/* colon */
.clock .colon {opacity: .7;padding: 0 2px;}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
.clock .digit {transition: none;}
}