.ce-statistiken {
    container-type: inline-size;
    padding: 3.5rem 5%;
    background: #fff;

    .ce-stat__header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .ce-stat__headline {
        font-size: clamp(1.1rem, 1.8vw, 1.5rem);
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
    }

    .ce-stat__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
        max-width: 56rem;
        margin: 0 auto;

        @media (max-width: 767px) {
            grid-template-columns: repeat(2, 1fr);
        }

        @media (max-width: 420px) {
            grid-template-columns: 1fr;
        }
    }

    .ce-stat__item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;

        &.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .ce-stat__number-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(8rem, 19.6cqw, 244px);
        aspect-ratio: 1;
        border-radius: 50%;
        border: 7px solid #e61f47;
        line-height: 1;
        gap: 1px;
    }

    .ce-stat__prefix,
    .ce-stat__suffix,
    .ce-stat__zahl {
        font-size: clamp(2.5rem, 6.5cqw, 4rem);
        font-weight: 900;
        color: #162637;
    }

    .ce-stat__zahl {
        font-variant-numeric: tabular-nums;
    }

    .ce-stat__label {
        font-size: 1rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #555;
        margin: 0;
        line-height: 1.4;
        max-width: 22ch;
    }
}
