/* =========================================================
   VEIC 2027 — COUNTDOWN TIMER STYLES
   File: assets/css/countdown.css
   Used by the [veic_countdown] shortcode, site-wide.
   ========================================================= */

.veic-countdown{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.veic-countdown-box{
    width: 85px;
    background: rgba(10, 46, 115, 0.6);
    border: 1px solid var(--veic-accent, #00C8FF);
    border-radius: 8px;
    padding: 16px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.veic-countdown-number{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    color: #FFFFFF;
    font-variant-numeric: tabular-nums;
}

.veic-countdown-label{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--veic-accent, #00C8FF);
    margin-top: 4px;
}

/* Positioning helper when placed inside the hero row, bottom-right,
   matching the reference design. Add class "veic-countdown-hero"
   to the wrapping SiteOrigin widget/row in Page Builder to use this. */
.veic-hero-row .veic-countdown-hero{
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 5;
}

/* Default (non-hero) usage — e.g. in a content page or footer —
   just flows inline, no absolute positioning */


/* -------- Responsive -------- */
@media (max-width: 991px){
    .veic-hero-row .veic-countdown-hero{
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 480px){
    .veic-countdown{
        gap: 8px;
    }
    .veic-countdown-box{
        width: 68px;
        padding: 10px 0;
    }
    .veic-countdown-number{
        font-size: 20px;
    }
    .veic-countdown-label{
        font-size: 9px;
    }
}
