/* Change Management — The team behind your transition */
.cm-team {
    background: #f3f3ff;
    padding: 120px 20px;
    box-sizing: border-box;
}
.cm-team__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.cm-team__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.cm-team__title {
    margin: 0;
    font-family: 'avenir_next_worldbold', 'Verdana';
    font-weight: normal;
    font-size: 40px;
    line-height: 48px;
    color: #333;
}
.cm-team__subtitle {
    margin: 0;
    max-width: 736px;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #707070;
}
.cm-team__cards {
    display: flex;
    align-items: stretch;
    gap: 32px;
}
.cm-team__card {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 36px;
    background: #fff;
    border-radius: 16px;
    box-sizing: border-box;
}
.cm-team__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 8px;
}
.cm-team__badge svg {
    display: block;
    width: 16px;
    height: 16px;
}
.cm-team__badge--violet {
    background: #e3e3ff;
}
.cm-team__badge--blue {
    background: #bffbfb;
}
.cm-team__badge--yellow {
    background: #ffeebf;
}
.cm-team__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cm-team__card-title {
    margin: 0;
    font-family: 'avenir_next_worldbold', 'Verdana';
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #333;
}
.cm-team__card-desc {
    margin: 0;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #707070;
}

/* iPad Pro (992–1024): tighten spacing, heading -2px */
@media (min-width: 992px) and (max-width: 1024px) {
    .cm-team {
        padding: 88px 20px;
    }
    .cm-team__title {
        font-size: 38px;
    }
}

/* Mobile: stack the three cards into a single column */
@media (max-width: 991px) {
    .cm-team {
        padding: 48px 16px;
    }
    .cm-team__inner {
        gap: 28px;
        max-width: 480px;
    }
    .cm-team__title {
        font-size: 28px;
        line-height: 36px;
    }
    .cm-team__cards {
        flex-direction: column;
        gap: 16px;
    }
}
