.basic-cta {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--brand-grey-dark);
}

.basic-cta__content {
    color: #fff;

    @media (min-width:768px) {
        padding-right: 270px;
        position: relative;
    }

    @media (min-width:992px) {
        margin-left: 45px;
        margin-right: 45px;
    }
}

.basic-cta__title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;

    @media (min-width:768px) {
        font-size: 28px;
    }
}

.basic-cta__text {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    color: #999a9f;

    p {
        margin-bottom: 10px;

        &:last-child {
            margin-bottom: 0;
        }
    }

    @media (min-width:768px) {
        margin-bottom: 0;
        font-size: 20px;
    }
}

.basic-cta__btn {
    @media (min-width:768px) {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}