.countdown-logo {
    padding-top: 2.1875rem;
}

.countdown-btn {
    padding-bottom: 2.1875rem;
}

.countdown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

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

.countdown__number {
    font-family: founders-grotesk-semibold, sans-serif;
    font-size: clamp(2.5rem, 9vw, 6.75rem);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.countdown__label {
    font-family: founders-grotesk-regular, sans-serif;
    font-size: clamp(0.75rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-top: 0.5rem;
    text-align: center;
}

.countdown__separator {
    font-family: founders-grotesk-semibold, sans-serif;
    font-size: clamp(2.5rem, 9vw, 6.75rem);
    font-weight: 600;
    line-height: 1;
    padding: 0 0.25rem;
}

/* color modifiers */
.countdown--white .countdown__number,
.countdown--white .countdown__label,
.countdown--white .countdown__separator {
    color: #fff;
}

.countdown--black .countdown__number,
.countdown--black .countdown__label,
.countdown--black .countdown__separator {
    color: #000;
}

.countdown--yellow .countdown__number,
.countdown--yellow .countdown__label,
.countdown--yellow .countdown__separator {
    color: #FAE03C;
}


@media (max-width: 768px) {
    .countdown__number,
    .countdown__separator {
        font-size: 2.2rem;
    }
    .countdown__label {
        font-size: 0.75rem;
    }
}


