.countdown-ws {
    --countdown-ws-box-bg: #b94709;
    width: 100%;
    max-width: 600px; /* vorher 200px → 3x größer */
    margin: 0 auto;   /* zentriert den gesamten Block */

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px; /* vorher 4px → 3x */

    align-items: stretch;
    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: 18px; /* vorher 6px */
    min-height: 162px;   /* vorher 54px */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 18px 9px; /* vorher 6px 3px */
    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
    line-height: 1;
    overflow: hidden;
}

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

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

/* RESPONSIVE sinnvoll angepasst */
@media (max-width: 700px) {
    .countdown-ws {
        max-width: 240px; /* vorher 200px → ca. +20% */
        gap: 5px;
    }

    .countdown-ws__box {
        min-height: 65px; /* vorher 54px */
        padding: 7px 4px;
        border-radius: 7px;
    }

    .countdown-ws__value {
        font-size: 29px; /* vorher 24px */
        margin-bottom: 7px;
    }

    .countdown-ws__label {
        font-size: 11px; /* vorher 9px */
    }
}

/* ganz kleine Geräte */
@media (max-width: 400px) {
    .countdown-ws {
        max-width: 220px;
        gap: 4px;
    }

    .countdown-ws__box {
        min-height: 58px;
        padding: 6px 3px;
    }

    .countdown-ws__value {
        font-size: 26px;
    }

    .countdown-ws__label {
        font-size: 10px;
    }
}