.promo-countdown {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: .75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: var(--light-gray-ui);
    border-radius: 8px;
    text-align: center
}

.countdown-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark-text)
}

.countdown-timer {
    display: flex;
    justify-content: space-around;
    width: 100%
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: var(--dark-text)
}

.countdown-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red)
}

.countdown-item p {
    font-size: .7rem;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase
}

.countdown-ended {
    font-size: .9rem;
    font-weight: 600;
    color: var(--brand-red);
    width: 100%;
    text-align: center;
    padding: 1rem 0
}