/* TheCounter – Frontend */
.the-counter {
    --tc-digit-color: #b9a382;
    --tc-label-color: #1a22c9;
    --tc-sep-color: rgba(185,163,130,0.45);
    --tc-gap: clamp(10px, 3vw, 28px);
    --tc-digit-size: clamp(36px, 8vw, 124px);
    --tc-label-size: clamp(10px, 2vw, 22px);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: var(--tc-gap);
    line-height: 1;
    white-space: nowrap;
    visibility: visible;
}

.the-counter[data-ready="0"] { visibility: hidden; }

.the-counter__item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.the-counter__value {
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--tc-digit-color);
    font-size: var(--tc-digit-size);
    line-height: 1;
}

.the-counter__label {
    margin-top: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tc-label-color);
    font-weight: 700;
    font-size: var(--tc-label-size);
}

.the-counter__sep {
    display: inline-block;
    font-size: var(--tc-digit-size);
    line-height: 0.9;
    color: var(--tc-sep-color);
    user-select: none;
    transform: translateY(-3%);
}

.the-counter--finished .the-counter__value { opacity: 0.75; }

.the-counter__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}