.vacature-card {
    display: flex;
    gap: 33px;
    margin-bottom: 50px;
    align-items: stretch;
}

.vacature-card .content-wrapper{
    margin-bottom:20px;
}

article.vacature-card .vacature-card__button{
    position: relative;
    text-transform: none;
    font-weight: 400;
    text-decoration: none;
    z-index: 1;
    height: 37px;
    display: inline-block;
    &:after{
        content:'';
        width:90%;
        height:26px;
        background-image: url(../images/nieuwsknop-achtergrond.png);
        background-size:contain;
        background-repeat: no-repeat;
        position:absolute;
        left:-10px;
        bottom:-10px;
        z-index:1;
    }
    &:before{
        content:'';
        background-color: var(--blauw);
        display:flex;
        align-items: center;
        justify-content: center;
        background-image: url(../images/knoparrow.svg);
        background-repeat:no-repeat;
        background-position: center;
        position: absolute;
        width:37px;
        height:37px;
        right:0;
        top:0;
        left:auto;
        bottom:auto;
        opacity: 1;
        z-index:3;
    }
    svg{
        display: none;
    }
    span{
        z-index: 2;
        font-size: 13px;
        position: relative;
        padding: 9.5px 58px 9.5px 20px;
        background-color: var(--rood);
        line-height: 37px;
        color:#fff;
    }
}


.vacature-card__image {
    flex: 0 0 40%;
    position: relative;
    padding-right: 55px;

    &:after {
        content: '';
        background-image: url(../images/Hoekvorm-streepjes.svg);
        width: 153px;
        height: 153px;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        bottom: -20px;
        right: 20px;
    }
}

.vacature-card__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.vacature-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h4.vacature-card__date{
    font-size:14px;
    font-weight:600;
    line-height:26px;
    color:#EE7203;
}
h3.vacature-card__title{
    margin-bottom:25px;
}

@media(max-width:1024px){
    .vacature-card {
        flex-direction: column;
    }
}

.wp-block-lazyblock-vacatures-lef h3.vacature-card__title{
    color:#E6007E;
}