.cp-statement {
    padding: 180px 0 120px;
}

.cp-statement__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.cp-statement__heading {
    font-family: var(--cp-font);
    font-size: 54px;
    font-weight: 500;
    line-height: 62px;
    color: var(--cp-text);
    text-transform: none;
}

.cp-statement__heading-accent {
    color: var(--cp-accent);
}

.cp-statement__body {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
    color: #B9B9BA;
}

.cp-statement__body p {
    margin: 0 0 1.5em;
}

.cp-statement__body p:last-child {
    margin-bottom: 0;
}

/* ----- Tablet / mobile ----- */
@media (max-width: 1024px) {
    .cp-statement {
        padding: 60px 0;
    }

    .cp-statement__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cp-statement__heading {
        font-size: 36px;
        line-height: 44px;
    }

    .cp-statement__body {
        font-size: 18px;
        line-height: 26px;
    }
}
