/* Change Management — More resources for your transition */
.cm-resources {
    background: #fff;
    padding: 88px 20px;
    box-sizing: border-box;
}
.cm-resources__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}
.cm-resources__title {
    margin: 0;
    font-family: 'avenir_next_worldbold', 'Verdana';
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
    color: #333;
    text-align: center;
}

/* Cards */
.cm-resources__cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.cm-resources__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cm-resources__graphic {
    display: block;
    width: 100%;
    aspect-ratio: 544 / 272;
    border-radius: 16px;
    overflow: hidden;
}
/* Fallback tint while the artwork loads */
.cm-resources__graphic--blue   { background: #bffbfb; }
.cm-resources__graphic--violet { background: #e3e3ff; }
.cm-resources__graphic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.cm-resources__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.cm-resources__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cm-resources__card-title {
    margin: 0;
    font-family: 'avenir_next_worldbold', 'Verdana';
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    color: #333;
}
.cm-resources__card-desc {
    margin: 0;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #707070;
}
.cm-resources__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'avenir_next_worldmedium', 'Verdana';
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #008392;
    text-decoration: underline;
}
.cm-resources__link:hover,
.cm-resources__link:focus {
    color: #008392;
    text-decoration: underline;
}
.cm-resources__arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.cm-resources__link:hover .cm-resources__arrow {
    transform: translateX(3px);
}
/* iPad Pro (992–1024): tighten spacing, heading -2px */
@media (min-width: 992px) and (max-width: 1024px) {
    .cm-resources {
        padding: 72px 20px;
    }
    .cm-resources__title {
        font-size: 30px;
    }
}
@media (max-width: 991px) {
    .cm-resources {
        padding: 48px 16px;
    }
    .cm-resources__inner {
        gap: 40px;
    }
    .cm-resources__title {
        font-size: 28px;
        line-height: 36px;
    }
    .cm-resources__cards {
        gap: 24px;
    }
    .cm-resources__card-title {
        font-size: 20px;
        line-height: 28px;
    }
}
/* Mobile: single column */
@media (max-width: 767px) {
    .cm-resources__inner {
        gap: 32px;
    }
    .cm-resources__cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cm-resources__card {
        gap: 20px;
    }
}
