.ctaRow::before {
    top: 50% !important;
}

.ctaRow__list {
    margin-bottom: 5em;
    padding: 0;
    list-style: none;
    background: #1e1e1e;
}

.ctaRow__item {
    flex: 1;
    position: relative;
    padding: 1.2em 3em 1.5em 2em;
    color: #fff;
}

.ctaRow__item + .ctaRow__item {
    border-left: 1px solid hsla(0,0%,96%,.2);
}

.ctaRow__item::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--primaryColor);
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition: transform .4s cubic-bezier(.165, .84, .44, 1);
    will-change: transform;
}

.ctaRow__item:hover:before {
    transform: scaleY(1);
}

.ctaRow__label {
    font-size: .65em;
        opacity: .8;
}

.ctaRow__title,
.ctaRow__link,
.ctaRow__link:hover {
    color: inherit;
}

.ctaRow__title {
    position: relative;/** over red background */
}

.ctaRow__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.ctaRow--1 .ctaRow__item {
    flex-basis: 100%;
}

.ctaRow--2 .ctaRow__item {
    flex-basis: 50%;
}

.ctaRow--2 .ctaRow__item {
    flex-basis: 33.333%;
}

.ctaRow__link::after {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}
