.post_inner-cta {
    position: relative;
    width: 100%;
    margin: 30px 0 50px;
    background: #f2f5f7;
}

.post_inner-cta a {
    display: block;
    padding: 4rem 0;
    border: 0;
    color: #000000;
}

.post_inner-cta:before {
    position: absolute;
    content: '';
    width: 300%;
    height: 100%;
    top: 0;
    left: -100%;
    background: #f4f7f9;
    z-index: -1;
}

.post_inner-cta-content-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.post_inner-cta-content-bottom-cta {
    position: relative;
    width: fit-content;
    border-bottom: 1px dashed;
}

.post_inner-cta-content-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.post_inner-cta svg {
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.post_inner-cta:hover svg {
    stroke: var(--primary-color);
}