.hoelter-statistik-counter {
    box-sizing: border-box;
    width: 100%;
    color: var(--hs-text);
    background: var(--hs-bg);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    padding: var(--hs-padding);
    font-family: var(--hs-font);
    font-size: var(--hs-size);
}

.hoelter-statistik-counter *,
.hoelter-statistik-counter *::before,
.hoelter-statistik-counter *::after {
    box-sizing: border-box;
}

.hoelter-statistik-counter__values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hoelter-statistik-counter__item {
    text-align: center;
}

.hoelter-statistik-counter__number,
.hoelter-statistik-counter__label {
    display: block;
}

.hoelter-statistik-counter__number {
    color: var(--hs-accent);
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.15;
}

.hoelter-statistik-counter__label {
    margin-top: 4px;
    line-height: 1.35;
}

.hoelter-statistik-counter__since {
    margin: 16px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--hs-border);
    text-align: center;
    font-size: .85em;
    opacity: .82;
}

@media (max-width: 640px) {
    .hoelter-statistik-counter__values {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
