.cb-bba-numbers-counter {
    width: 100%;

    min-height: 500px;
    height: auto;
    position: relative;

    .content {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;

        @media screen and (min-width: 769px) {
            position: absolute;
            margin-bottom: 0;
        }
        @media screen and (max-width: 768px) {
            flex-direction: row;
        }

        .number {
            display: inline-block;
            position: relative;
            .counter-value {
                margin: 0 auto;
                font-size: clamp(1.375rem, 0.2893rem + 2.2589vw, 3rem);
                font-weight: 700;
                text-align: center;
                clear: both;
                position: absolute;
                left: 0;
                top: 0;
                background-color: var(--hf-color-prim);
                padding: 20px 30px;
                text-align: center;
                color: #FFFFFF;
            }

            .counter-placeholder {

                display: inline-block;
                overflow: hidden;
                min-width: 7ch;
                text-align: right;
                font-size: clamp(1.375rem, 0.2893rem + 2.2589vw, 3rem);
                font-weight: 700;
            }

        }

        .counter-block {
            display: inline-block;
            text-align: center;
        }

        .counter-wrapper {
            position: relative;
            display: inline-block;
            background-color: var(--hf-color-prim, #E65400);
            padding: 20px 30px;
            text-align: center;
            color: #FFFFFF;
        }

        /* Unsichtbarer Platzhalter reserviert Breite */
        .counter-placeholder {
            visibility: hidden;
            white-space: nowrap;
            display: block;
            font-size: clamp(1.375rem, 0.2893rem + 2.2589vw, 3rem);
            font-weight: 700;
        }

        /* Sichtbarer Zähler absolut darüber */
        .counter {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            text-align: center;
            padding: 20px 30px;
            font-size: clamp(1.375rem, 0.2893rem + 2.2589vw, 3rem);
            font-weight: 700;
        }

        /* Text darunter */
        .counter-label {
            margin-top: 25px;
            font-size: 24px;
            color: #333;
        }


        @media screen and (min-width: 769px) {
            &.content-0 {
                left: 0;
                top: 20px;
            }

            &.content-1 {
                left: 100px;
                top: 320px;
            }

            &.content-2 {
                left: 280px;
                top: 150px;
            }

            &.content-3 {
                left: 450px;
                top: 400px;
            }

            &.content-4 {
                right: 150px;
                top: 0;
            }

            &.content-5 {
                right: 0;
                top: 220px;
            }
        }

        @media screen and (min-width: 1025px) {
            &.content-0 {
                left: 0;
            }

            &.content-1 {
                left: 200px;
            }

            &.content-2 {
                left: 400px;
            }

            &.content-3 {
                left: 700px;
            }

            &.content-4 {
                right: 220px;
            }

            &.content-5 {
                right: 0;
            }
        }

        @media screen and (min-width: 1200px) {
            &.content-0 {
                left: 0;
            }

            &.content-1 {
                left: 200px;
            }

            &.content-2 {
                left: 520px;
            }

            &.content-3 {
                left: 800px;
            }

            &.content-4 {
                right: 220px;
            }

            &.content-5 {
                right: 0;
            }
        }
    }

    @media screen and (max-width: 768px) {
        .content-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            > .content {
                flex-direction: column;
            }
        }

        .content:nth-child(odd) {
            align-self: flex-start;
        }

        .content:nth-child(even) {
            align-self: flex-end;
        }
    }
}
