/* ============================================================
   TBB Event Countdown Timer
   Clean white / black – blends with the page body
   ============================================================ */

.tbb-countdown-wrap {
    background: #ffffff;
    color: #111111;
    text-align: center;
    padding: 20px 16px 16px;
    font-family: inherit;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 24px;
    box-sizing: border-box;
}

/* ── Label row ───────────────────────────────────────────── */
.tbb-countdown-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111111;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tbb-countdown-icon {
    font-size: 1.1rem;
}

/* ── Timer row ───────────────────────────────────────────── */
.tbb-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.tbb-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.tbb-countdown-num {
    font-size: clamp(2rem, 10vw, 3.2rem);
    font-weight: 900;
    line-height: 1;
    color: #111111;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.tbb-countdown-text {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #555555;
    margin-top: 6px;
}

/* Separator colons */
.tbb-countdown-sep {
    font-size: clamp(1.6rem, 6vw, 2.8rem);
    font-weight: 900;
    color: #111111;
    align-self: flex-start;
    padding: 0 2px;
    margin-top: -4px;
    line-height: 1;
}

/* ── "Event started" message ─────────────────────────────── */
.tbb-countdown-started {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin: 16px 0 0;
    letter-spacing: 0.04em;
}

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 480px) {
    .tbb-countdown-unit {
        min-width: 68px;
    }
    .tbb-countdown-sep {
        padding: 0 2px;
    }
}
