/* ── Countdown / stat strip ── */
.new-countdown {
    position: relative;
    background: #192666;
    overflow: hidden;
}

.new-countdown__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(206, 137, 36, 0.16) 0%, transparent 62%),
        radial-gradient(ellipse 40% 40% at 8% 90%, rgba(80, 110, 200, 0.18) 0%, transparent 55%);
}

.new-countdown__inner {
    position: relative;
    z-index: 1;
}

.new-countdown__head {
    max-width: 44rem;
    margin: 0 auto 1.5rem;
}

.new-countdown__title {
    color: #fff;
    text-transform: none !important;
}

.new-countdown__timer {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto 1.75rem;
}

.new-countdown__time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: clamp(4.4rem, 11vw, 5.75rem);
    padding: 0.7rem 0.75rem 0.55rem;
    border-radius: 12px;
    background: rgba(12, 18, 48, 0.45);
    border: 1px solid rgba(206, 137, 36, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.new-countdown__time-num {
    color: #ce8924;
    font-family: var(--ztc-family-font1), 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: lining-nums tabular-nums;
}

.new-countdown__time-label {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--ztc-family-font1), 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
}

.new-countdown__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.new-countdown__chip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 1.1rem 1.15rem 1.05rem;
    border-radius: 14px;
    background: rgba(12, 18, 48, 0.35);
    border: 1px solid rgba(206, 137, 36, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.new-countdown__chip-num {
    color: #ce8924;
    font-family: var(--ztc-family-font1), 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: lining-nums;
}

.new-countdown__chip-label {
    color: #fff;
    font-family: var(--ztc-family-font1), 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
}

.new-countdown__chip-desc {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--ztc-family-font2), 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.45;
    margin-top: 0.25rem;
}

@media (max-width: 991.98px) {
    .new-countdown__chips {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .new-countdown__chips {
        grid-template-columns: 1fr;
    }

    .new-countdown__timer {
        margin-bottom: 1.35rem;
    }

    .new-countdown__time-box {
        min-width: calc(50% - 0.3rem);
        flex: 1 1 calc(50% - 0.3rem);
    }
}
