.posts-list + .ctaBanner2{
    position: relative;
    z-index: 20;
    background-color: #710397;
    padding-top: 5rem;
    margin-top: 2rem;
}

.ctaBanner2 .textPart::before{
    content: "";
    background-color: rgb(167 48 220 / 90%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
    bottom: 0;
}

/* Mobile */ 
@media (max-width: 769px) {
    .ctaBanner2 .textPart::before{
    height: 80%;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
}
}