.countdown {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: var(--wpct-countdown-bg, #eaf4ff);
    padding: 10px;
    border-radius: 20px;
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    align-items: stretch;
}

.countdown__item {
    background: var(--wpct-item-bg, #eaf4ff);
    border: 2px solid var(--wpct-item-border, #bcdcff);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    padding: 10px;
    min-width: 110px;

    display: grid;
    gap: 6px;
    justify-items: center;
    text-align: center;
}

.countdown__value {
    font-weight: 800;
    font-size: 2.5vw;
    line-height: 1;
    color: var(--wpct-num-color, #2d6cdf);
    letter-spacing: .5px;
}

.countdown__label {
    font-size: 1vw;
    color: var(--wpct-label-color, #3a5b86);
    font-weight: 600;
}

@media (max-width: 1020px) {
    .countdown {
        width: 100%;
        max-width: 500px;
    }
}

/* Responsive: apila en móviles */
@media (max-width: 520px) {
    .countdown {
        width: 100%;
        /*max-width: 100%;*/
    }

    .countdown__item {
        min-width: auto;
        padding: 5px;
    }

    .countdown__value {
        font-size: 18px;
    }

    .countdown__label {
        font-size: 10px;
    }
}
