a:has(> .post_layout_vacature){
    text-decoration: none !important;
}
a:has(> .post_layout_vacature):not(:last-child){
    display: block;
    margin-bottom: 20px;
}

.post_layout_vacature{
    border-radius: 16px;
    background-color: var(--tt-blauw-20);
    padding: 30px 40px; 
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
}

.post_layout_vacature .post_layout_header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.post_layout_vacature .post_layout_header .department_logo{
    padding: 10px 20px;
    background-color: var(--tt-wit);
    border-radius: 8px;
}
.post_layout_vacature .post_layout_header .department_logo img{
    max-width: 100%;
    width: 125px;
    object-fit: contain;
}

.post_layout_vacature .tag_wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.post_layout_vacature .tag_wrapper span{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--tt-donker-blauw-100);
    padding: 6px 12px;
    background-color: var(--tt-wit);
    border-radius: 8px;
}

.post_layout_vacature .tag_wrapper span:before{
    content: "";
    display: inline-block;
    background-color: var(--tt-geel);
}

.post_layout_vacature .tag_wrapper span.location:before{
    width: 16px;
    height: 19px;
    -webkit-mask: url('/wp-content/uploads/2025/06/location.svg') no-repeat center/contain;
    mask: url('/wp-content/uploads/2025/06/location.svg') no-repeat center/contain;
}
.post_layout_vacature .tag_wrapper span.distance:before{
    width: 20px;
    height: 20px;
    -webkit-mask: url('/wp-content/uploads/2025/06/icon.svg') no-repeat center/contain;
    mask: url('/wp-content/uploads/2025/06/icon.svg') no-repeat center/contain;
}

.post_layout_vacature .heading{
    transition: translate .3s ease-in-out;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.post_layout_vacature .post_layout_footer{
    position: relative;
    margin-top: 60px;
}

.post_layout_vacature .button_wrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    transition: opacity .3s ease-in-out;
    opacity: 0;
}

.post_layout_vacature .button_wrapper .button{
    line-height: 1;
}

a:hover .post_layout_vacature .button_wrapper,
a:focus .post_layout_vacature .button_wrapper{
    opacity: 1;
}

a:hover .post_layout_vacature .heading,
a:focus .post_layout_vacature .heading{
    translate: 0 -50px;
}

@media screen and (max-width: 992px){
    .post_layout_vacature .heading{
        font-size: 22px;
    }
    /* .post_layout_vacature .post_layout_footer{
        margin-top: 40px;
    } */
}

@media screen and (max-width: 767px){
    .post_layout_vacature{
        padding: 20px 24px;
    }
    .post_layout_vacature .heading{
        font-size: 20px;
    }
    /* .post_layout_vacature .post_layout_footer{
        margin-top: 32px;
    } */
}