.countdown-timer-block {
    margin: 2rem 0;
}

.form-embed-col .countdown-timer-block{
    margin:1rem 40px 0 40px;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 6px;
    padding: 1rem 1.75rem;
    /* box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15); */
    box-shadow:none;
    transition: all 0.3s ease;
}

.countdown-display {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    gap:0;
}

.countdown-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    font-family: var(--wp--font--secondary--ext);
    min-width: 2.5rem;
    text-align: center;
}

.countdown-label {
    font-size: 0.75rem;
    color: #a0a0a0;
    text-transform: uppercase;
    font-weight: 500;
}

.countdown-divider {
    width: 1px;
    height: 40px;
    background: #666666;
    align-self: center;
}

/* Expired state */
.countdown-timer.expired {
    opacity: 0.6;
}

.countdown-timer.expired .countdown-number {
    color: #999999;
}

/* Animation for number changes */
.countdown-number {
    transition: transform 0.15s ease;
}

.countdown-number:active {
    transform: scale(0.95);
}

@media only screen and (max-width:1400px){
    .countdown-number{
        font-size:1.75rem;
    }
}

@media only screen and (max-width:1240px){
    .countdown-timer{
        padding:1rem;
    }
    
    .countdown-number{
        font-size:1.5rem;
    }

    .countdown-label{
        font-size:.625rem;
        break-inside:avoid;
        white-space: nowrap;
    }
}

@media only screen and (max-width:1120px){
    .countdown-timer{
        padding:1rem;
    }
    
    .countdown-number{
        font-size:1.25rem;
    }

    .countdown-label{
        font-size:.5rem;
    }
}

@media only screen and (max-width:960px){
    .countdown-display{
        gap:1rem;
    }
}

@media only screen and (max-width:781px){
    .countdown-timer{
        padding:1rem 1.75rem;
    }
    
    .countdown-number{
        font-size:1.75rem;
    }

    .countdown-label{
        font-size:.75rem;
    }    
}

@media only screen and (max-width:550px){
    .countdown-timer{
        padding:1rem;
    }
    
    .countdown-number{
        font-size:1.25rem;
    }

    .countdown-label{
        font-size:.5rem;
    }
}

@media only screen and (max-width:400px){    
    .countdown-timer{
        padding:.5rem .75rem;
    }
    
    .countdown-display{
        gap:.625rem;
    }
    
    .countdown-number{
        font-size:.875rem;
    }

    .countdown-label{
        font-size:.5rem;
    }
}

@media only screen and (max-width:350px){
   .countdown-display{
        gap:.325rem;
    }
}

@media only screen and (max-width:350px){
   .countdown-display{
        gap:4px;
    }
}