/* template: mensen */
.people {
    margin-top: 20px;
    margin-bottom: 60px;
}
.people:last-of-type {
    margin-bottom: 0;
}
.people .people-carousel {
    width: 100%; /*border: 1px dashed #ddd;*/ box-sizing: border-box;
}
.people .people-carousel img {
    display: block;
    width: 100%;
}
.people .people-content {
    padding: 20px 30px 90px 30px;
    width: 100%;
    box-sizing: border-box;
    background-color: #f2f2f2;
}
.people .people-content h2 {
    position: relative;
    left: -30px;
    margin-bottom: 0;
    max-width: none;
}
.people .people-content p:first-of-type {
    margin-bottom: 0;
}
.people .people-content p {
    column-count: 2;
    column-gap: 40px;
}
.people .people-quote {
    position: relative;
    display: flex;
    margin-top: -60px;
    width: 100%;
}
.people .people-quote:not(:first-of-type) {}
.people .people-quote .people-quote-content {
    padding: 30px;
    width: 50%;
    color: #fff;
    box-sizing: border-box;
    background-color: #e84242;
}
.people .people-quote .people-quote-content em {
    font-family: metronic-slab;
    font-weight: 400; /*font-size: 1.8em;*/ font-size: 24px;
    max-width: 650px;
    display: block;
    margin-bottom: 15px;
    line-height: 1.3;
    font-style: normal;
}
.people .people-quote .people-quote-content span {}
.people .people-quote .people-quote-image {
    DISPLAY: NONE;
    width: 250px;
    height: 250px;
    background-color: #ccc;
}
.people .people-quote .people-quote-image img {
    display: block;
    width: 100%;
}
.row.first.mensen .quote-block {
    margin-top: 6em;
}
/* responsive-ness */
@media screen and (max-width: 1000px) {
    /* template: mensen */
    .people {
        margin-top: 20px;
        margin-bottom: 0;
    }
    .people .people-carousel {}
    .people .people-content {
        padding-bottom: 30px;
    }
    .people .people-content h2 {
        width: 100%;
        max-width: none;
    }
    .people .people-content p {
        column-count: 1;
    }
    .people .people-quote {
        flex-wrap: wrap;
        margin-top: 0;
    }
    .people .people-quote .people-quote-content, .people .people-quote .people-quote-image {
        width: 100%;
        height: auto;
    }
    .people .people-quote .people-quote-content {
        position: relative;
        order: 2;
    }
    .people .people-quote .people-quote-content:before {
        position: absolute;
        top: -15px;
        left: 50%;
        width: 30px;
        height: 30px;
        content: "";
        transform: translateX(-50%) rotate(45deg);
        background-color: #e84242;
    }
    .people .people-quote .people-quote-content strong {
        font-size: 1.5em;
    }
    .people .people-quote .people-quote-image {
        order: 1;
    }
    .row.first.mensen .quote-block {
        margin-top: 3em;
    }
}