.page__main.werkplaats .page__content {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.workplace-bullet-points {
    width: fit-content;
    white-space: nowrap;
}

.workplace-bullet-points__list {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    padding-left: 24px;
}

.workplace-bullet-points__list li {
    list-style-type: disc;
}

.services {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.services__title {
    margin-top: 32px;
    font-size: 1.75rem;
}

.service__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--color-surface);
}

.service__title {
    margin-bottom: 8px;
}

.service__content {
    margin-bottom: 12px;
    font-size: 16px;
    word-spacing: 1px;
}

.service__button {
    margin-top: auto;
    text-decoration: none;
}

/* Desktop */
@media (min-width: 1200px) {

    .page__main.werkplaats .page__content {
        flex-direction: row;
        column-gap: 20px;
    }

    .service__card {
        width: calc( (100% / 3) - 20px + (20px / 3) );
    }

}