/* Change Management — Quote banner */
.cm-quote {
    background: linear-gradient(158.45deg, #4242c3 12%, #2b2b8e 97%);
    padding: 160px 20px;
    box-sizing: border-box;
}
.cm-quote__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.cm-quote__mark {
    display: block;
    line-height: 0;
}
.cm-quote__mark svg {
    display: block;
}
.cm-quote__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.cm-quote__text {
    margin: 0;
    max-width: 928px;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 32px;
    line-height: 48px;
    color: #fff;
    text-align: center;
}
.cm-quote__author {
    margin: 0;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    text-align: center;
}
.cm-quote__name {
    font-family: 'avenir_next_worlddemi', 'Verdana';
}
.cm-quote__sep {
    font-family: 'avenir_next_worldregular', 'Verdana';
    opacity: 0.6;
}

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

/* Mobile: tighten padding, scale down the quote, stack the attribution */
@media (max-width: 991px) {
    .cm-quote {
        padding: 64px 16px;
        background: linear-gradient(124.8deg, #4242c3 12%, #2b2b8e 97%);
    }
    .cm-quote__text {
        font-size: 24px;
        line-height: 32px;
    }
    .cm-quote__name {
        display: block;
    }
    .cm-quote__sep {
        display: none;
    }
}
