/* =========================================
   CUSTOM COMPANY COUNTERS
   Kalium / WPBakery
   ========================================= */

.custom-company-counters {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px !important;
    width: 100%;
}

.custom-counter {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;

    /* Weißer Hintergrund + graue Outline */
    background-color: #ffffff;
    border: 2px solid #EBEBEB;
    border-radius: 8px;

    /* Innenabstand */
    padding: 30px 20px;

    /* Ausrichtung */
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-counter__number {
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f49d1a;
    white-space: nowrap;
    text-align: center !important;
    width: 100%;
}

.custom-counter__value {
    display: inline-block;
    text-align: center;
}

.custom-counter__label {
    margin-top: 4px;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
    opacity: 1;
    text-align: center !important;
    width: 100%;
}

/* Tablet */
@media (max-width: 991px) {
    .custom-company-counters {
        gap: 20px !important;
    }

    .custom-counter {
        padding: 25px 15px;
    }

    .custom-counter__label {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .custom-company-counters {
        grid-template-columns: 1fr;
        gap: 20px !important;
    }

    .custom-counter {
        padding: 25px 20px;
    }

    .custom-counter__number {
        font-size: 40px;
    }

    .custom-counter__label {
        font-size: 16px;
    }
}