.definetz-statistik {
    --dn-blue: #294f6d;
    --dn-blue-dark: #173b58;
    --dn-green: #a8c900;
    --dn-border: #d8e0e7;
    --dn-muted: #5d6874;
    width: 100%;
    max-width: 1180px;
    margin: 30px auto;
    box-sizing: border-box;
    font-family: inherit;
}

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

.definetz-statistik__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 18px;
    align-items: stretch;
}

.definetz-statistik__card {
    min-width: 0;
    min-height: 310px;
    padding: 25px 18px 22px;
    border: 1px solid var(--dn-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(23, 59, 88, .07);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.definetz-statistik__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 59, 88, .11);
}

.definetz-statistik__icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 19px;
    place-items: center;
    border-radius: 50%;
    background: #f7f9fa;
    box-shadow: inset 0 0 0 1px #edf1f4;
}

.definetz-statistik__icon svg {
    width: 41px;
    height: 41px;
    fill: none;
    stroke: var(--dn-blue-dark);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.definetz-statistik__icon svg .fill {
    fill: var(--dn-blue-dark);
    stroke: none;
}

.definetz-statistik__title {
    margin: 0 0 14px;
    color: var(--dn-blue-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .015em;
    text-transform: uppercase;
}

.definetz-statistik__value {
    max-width: 100%;
    overflow-wrap: normal;
    white-space: nowrap;
    color: var(--dn-blue);
    font-size: clamp(38px, 5vw, 54px);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -.045em;
    font-variant-numeric: tabular-nums;
}

.definetz-statistik__line {
    width: 36px;
    height: 3px;
    margin: 20px auto 17px;
    border-radius: 3px;
    background: var(--dn-green);
}

.definetz-statistik__description {
    color: var(--dn-muted);
    font-size: 15px;
    line-height: 1.45;
}

.definetz-statistik__status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 23px;
    color: var(--dn-muted);
    font-size: 14px;
    text-align: center;
}

.definetz-statistik__status-icon {
    color: var(--dn-blue-dark);
    font-size: 20px;
    line-height: 1;
}

.definetz-statistik__state {
    padding: 3px 8px;
    border-radius: 999px;
    background: #eef6db;
    color: #587000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.definetz-statistik__state.is-stale {
    background: #f3f0e8;
    color: #76643e;
}

@media (max-width: 520px) {
    .definetz-statistik {
        margin: 22px auto;
    }

    .definetz-statistik__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .definetz-statistik__card {
        min-height: auto;
        padding: 23px 18px;
    }

    .definetz-statistik__value {
        font-size: 46px;
    }
}
