.wk-intro-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.wk-intro-vlak {
    width: 70%;
    height: 100%;
    background-color: #343434;
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding: 0 40px 0 100px;
}

.wk-intro-vlak::after {
        content: "";
    position: absolute;
    width: 30px;
    height: 120%;
    background: white;
    pointer-events: none;
    transform: rotate(19.1deg);
    right: 112px;
    margin: 0;
    top: -25px;
}
.wk-intro-content {
    color: white;
    position: relative;
    z-index: 1;
    width: 85%;
    /* padding: 0 40px; */
}

.wk-intro-headings {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 60px!important;
}

.wk-intro-column {
    flex: 1;
    min-width: 160px;
}

.wk-intro-title {
    color: #EE5B2B;
    font-size: 3em;
    margin: 0 0 12px 0;
    flex: 1;
    min-width: 160px;
}

.wk-intro-content p {
    color: #ffffff;
    font-size: 1.25em;
    margin: 8px 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .wk-intro-title {
        font-size: 1.6em;
    }
    .wk-intro-headings {
        gap: 18px;
    }
    .wk-intro-content p {
        font-size: 0.9em;
    }
}

.wk-intro-svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 59% 100%);
}

.wk-intro-image {
        width: 109%;
    position: relative;
    height: 100%;
    right: -53%;
    object-fit: contain;
    object-position: right center;
    transform: scaleX(-1);
}