/* Change Management — Data migration, handled with care */
.cm-migration {
    background: linear-gradient(108.64deg, #4242c3 13%, #2b2b8e 100%);
    padding: 120px 20px;
    box-sizing: border-box;
}
.cm-migration__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}
.cm-migration__intro {
    flex: 0 0 544px;
    max-width: 544px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.cm-migration__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
}
.cm-migration__title {
    margin: 0;
    font-family: 'avenir_next_worldbold', 'Verdana';
    font-weight: normal;
    font-size: 40px;
    line-height: 48px;
    color: #fff;
}
.cm-migration__desc {
    margin: 0;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
}
.cm-migration__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 13px 16px;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-family: 'avenir_next_worlddemi', 'Verdana';
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.cm-migration__cta:hover,
.cm-migration__cta:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    outline: none;
}

/* Table */
.cm-migration__table {
    flex: 1 1 0;
    min-width: 0;
    max-width: 544px;
    border-radius: 16px;
    overflow: hidden;
}
.cm-migration__row {
    display: flex;
}
.cm-migration__cell {
    display: flex;
    align-items: center;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #bffbfb;
    background: #fff;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    word-break: break-word;
}
.cm-migration__cell--left {
    flex: 223 1 0;
    font-family: 'avenir_next_worlddemi', 'Verdana';
    font-weight: normal;
}
.cm-migration__cell--right {
    flex: 283 1 0;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
}
.cm-migration__row--head .cm-migration__cell {
    background: #7feaf6;
    font-family: 'avenir_next_worlddemi', 'Verdana';
    line-height: 16px;
}

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

/* Mobile: stack the intro above the table, both full width */
@media (max-width: 991px) {
    .cm-migration {
        padding: 64px 16px;
    }
    .cm-migration__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .cm-migration__intro {
        flex: 0 0 auto;
        max-width: none;
    }
    .cm-migration__title {
        font-size: 28px;
        line-height: 36px;
    }
    .cm-migration__table {
        flex: 0 0 auto;
        max-width: none;
    }
}
@media (max-width: 320px) {
    .cm-migration__cta{
        align-self: auto;
    }
}