.countdown-widget {
    width: 100%;
}

.countdown-widget__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.countdown-widget__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-widget__digits {
    display: flex;
    gap: 6px;
}

.countdown-widget__digit {
    width: 60px;
    height: 82px;
    border-radius: 6px;
    background: #ffffff;
    color: #1b245f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}

.countdown-widget__separator {
    color: #ffffff;
    font-size: 42px;
    line-height: 82px;
    font-weight: 700;
}

.countdown-widget__label {
    margin-top: 12px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.countdown-widget__expired {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 767px) {
    .countdown-widget__digit {
        width: 42px;
        height: 58px;
        font-size: 34px;
    }

    .countdown-widget__separator {
        font-size: 28px;
        line-height: 58px;
    }

    .countdown-widget__label {
        font-size: 13px;
        margin-top: 8px;
    }
}