.flex_layout.kaarten_content .flex_container_inner {
    padding-block: 100px;
    padding-bottom: 150px;
}

.flex_layout.kaarten_content .kaarten_content_wrapper {
    display: flex;
    gap: 120px;
}

.flex_layout.kaarten_content .kaarten_content_wrapper .text_content {
    max-width: 350px;
    width: fit-content;
}

.flex_layout.kaarten_content .kaarten_content_wrapper .text_content .text_content_wrapper {
    position: sticky;
    top: 140px;
}

.flex_layout.kaarten_content .tag_wrapper {
    width: fit-content;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    margin-bottom: 24px;
}

.flex_layout.kaarten_content .tag_wrapper span {
    font-size: 20px;
    line-height: 1;
    color: #fff;
}

.flex_layout.kaarten_content .kaarten_content_wrapper .text_content h3 {
    margin-bottom: 24px;
    font-weight: 600;
}

.flex_layout.kaarten_content .kaarten_content_wrapper .text_content p {
    font-size: 16px;
    line-height: 1.6;
}

.flex_layout.kaarten_content .kaarten_wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart {
    border-radius: 30px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    padding: 55px 70px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 140px;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart:nth-child(4n+1) {
    background: #CDB3A3;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart:nth-child(4n+2) {
    background: #F5F0ED;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart:nth-child(4n+3) {
    background: #A2D5D1;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart:nth-child(4n+4) {
    background: #E9F1EE;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart .kaart_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart .kaart_title h4 {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.2;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart .kaart_title .kaart_nummer {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.50);
    padding: 10px 12px;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    font-family: "gts-super", Poppins, Verdana, sans-serif;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart .kaart_image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart .kaart_tekst p {
    font-size: 16px;
    line-height: 1.6;
}

.flex_layout.kaarten_content .kaarten_wrapper .kaart .kaart_tekst p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .flex_layout.kaarten_content .kaarten_content_wrapper {
        gap: 80px;
    }
}

@media screen and (max-width: 992px) {
    .flex_layout.kaarten_content .flex_container_inner {
        padding-block: 60px;
        padding-bottom: 140px;
    }

    .flex_layout.kaarten_content .kaarten_content_wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .flex_layout.kaarten_content .kaarten_content_wrapper .text_content {
        max-width: 100%;
    }

    .flex_layout.kaarten_content .kaarten_wrapper .kaart {
        padding: 40px;
        top: 120px;
    }
}

@media screen and (max-width: 767px) {
    .flex_layout.kaarten_content .flex_container_inner {
        padding-block: 40px;
        padding-bottom: 140px;
    }

    .flex_layout.kaarten_content .kaarten_wrapper .kaart {
        padding: 20px;
    }
}