/*
    .countdown-ws {
    --countdown-ws-box-bg: #b94709;
    width: 100%;
    max-width: 200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    align-items: stretch;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/

.countdown-ws {
    --countdown-ws-box-bg: #b94709;
    width: 100%;
    max-width: 200px;
	margin: 0 auto;   /* DAS ist der wichtige Teil */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    align-items: stretch;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




.countdown-ws,
.countdown-ws *,
.countdown-ws *::before,
.countdown-ws *::after {
    box-sizing: border-box;
}

.countdown-ws__box {
    background: var(--countdown-ws-box-bg);
    color: #ffffff;
    border-radius: 6px;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px 3px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    overflow: hidden;
}

.countdown-ws__value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.countdown-ws__label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 220px) {
    .countdown-ws {
        max-width: 100%;
        gap: 3px;
    }

    .countdown-ws__box {
        min-height: 48px;
        padding: 5px 2px;
        border-radius: 5px;
    }

    .countdown-ws__value {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .countdown-ws__label {
        font-size: 8px;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 180px) {
    .countdown-ws {
        gap: 2px;
    }

    .countdown-ws__box {
        min-height: 42px;
        padding: 4px 2px;
        border-radius: 4px;
    }

    .countdown-ws__value {
        font-size: 17px;
        margin-bottom: 3px;
    }

    .countdown-ws__label {
        font-size: 7px;
        letter-spacing: 0.03em;
    }
}
