#job-category-wrapper {
    max-width: var(--def-content-width);
    width:100%;
    margin: auto;
    margin-top: 70px;
    margin-bottom:30px;
}

.content-category{
	text-align:center;
}

.categories-list{
	text-align:center;
    margin-top:50px;
}

.job-category-list-header{
    width:100%;
    margin: 30px auto 30px auto;
    text-align: center;

}

.category-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;  
}

.job-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;    
}

.job-category-stripe {
    background: linear-gradient(-45deg, #222 5%, #333 5%, #333 10%, #222 10%, #222 100%);
}

.job-category-stripe:hover {
    background: linear-gradient(-45deg, #222 5%, var(--gbl-yellow-fifty) 5%, var(--gbl-yellow-fifty) 10%, #222 10%, #222 100%);
}

.job-category {
    border-radius: 0 0 0 0;
    border: 1px solid #444;
    text-align: center;
    background-color:#222;
    display: flex;
    flex-flow: column nowrap;
    cursor: auto !important;
}

.job-category:hover {
    cursor: pointer;
    border: 1px solid var(--gbl-yellow-fifty);
    box-shadow: 7px 7px 20px #333;
}

.job-info {
    padding: 15px;
}

h2,
.job-category h2 {
    color: var(--gbl-yellow);
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;

}

.job-info h2  a {
    text-decoration: underline;
    color: var(--gbl-yellow);
}

.job-info h2  a:hover {
    text-decoration: none;
    color: var(--gbl-yellow);
}

.job-image {
    height: 120px;
    background-color: #333;
    margin-bottom: 30px;
    position: relative;
    border-radius: 0 0 0 0; /* hoek 25% */
}

.job-image::before {
    /* content: 'foto ontbreekt nog'; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #b1b1b1;
}

.job-image img{
    width: 100%;
    border-radius: 0 0 0 0;
    filter: grayscale(65%);
}

.job-list-photo {
    width: 100%;
    height: 100%;
    border-radius: 0 25px 0 0;
    filter: grayscale(65%);
}

.job-payoff {
    min-height: 70px;
    vertical-align: top;
}

.job-button {
    background-color: var(--gbl-yellow);
    color: var(--gbl-black);
    padding: 7px 15px 7px 15px;
    text-decoration: none;
    font-size: .9rem;
    border-radius: 4px;
    font-weight: 400;
    width: 54%;
    display: flex;
    justify-content: center;
    margin: auto;
}

#vacancy-info{
    margin-top: 70px;
}

.hspacer{
    margin-top: 70px;
}

.bottom-padding-off{
    padding-bottom:0;
}

.job-button-area{
    padding:0 15px 30px 15px;
    margin-top:auto;
}

@media only screen and (max-width: 600px) {

    /* hide images for mobile */
    .job-image{
        display:none;
    }

    .categories-list{
        margin-top:30px;
    }

    .category-grid{
        grid-template-columns:  auto !important;
        row-gap: 20px !important;
        grid-auto-flow: row;
    }

    .job-grid {
        grid-template-columns:  auto !important;
        row-gap: 20px !important;
        grid-auto-flow: row;
    }
}