/* Change Management — Stats bar */
.cm-stats {
    background: #fff;
    padding: 0 20px 120px;
    box-sizing: border-box;
}
.cm-stats__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}
.cm-stats__item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 32px 32px 40px;
    box-sizing: border-box;
    border-right: 1px solid #ccc;
}
.cm-stats__item:last-child {
    border-right: none;
}
.cm-stats__num {
    font-family: 'avenir_next_worldbold', 'Verdana';
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
    color: #5050d2;
}
.cm-stats__label {
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #333;
}

/* iPad Pro (992–1024): tighten bottom spacing */
@media (min-width: 992px) and (max-width: 1024px) {
    .cm-stats {
        padding: 0 20px 88px;
    }
}

/* Mobile: stack the three stats into a single column */
@media (max-width: 991px) {
    .cm-stats {
        padding: 48px 16px;
    }
    .cm-stats__inner {
        flex-direction: column;
        max-width: 480px;
    }
    .cm-stats__item {
        padding: 24px;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
    .cm-stats__item:last-child {
        border-bottom: none;
    }
    .cm-stats__label {
        font-size: 14px;
        line-height: 24px;
    }
}
