#entity-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
#entity-items a{
    text-decoration: none;
}
#entity-items .thumbnail {
    position: relative;
    display: block;
}
#entity-items .thumbnail img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}
#entity-items .thumbnail .status {
    font-family: "Bodoni Moda", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-transform: uppercase;
    background-color: #f05619;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    position: absolute;
    height: 38px;
    top: -38px;
    right: 0;
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
#entity-items.aankoop .thumbnail .status {
    -moz-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    top: auto;
    bottom: -30px;
    min-width: 180px;
    height: 40px;
    text-align: center;
}
#entity-items .item-content {
    margin-top: 20px;
}
#entity-items .item-content header {
    display: flex;
    align-items: flex-start;
}
#entity-items .item-content header h2 {
    font-size: 21px;
    line-height: 1;
    margin: 0;
    text-transform:capitalize;
}
#entity-items .item-content header h3 {
    font-size: 18px;
    font-weight: normal;
    margin: 5px 0 0;
    text-transform:capitalize;
}
#entity-items .item-content header h4 {
    font-size: 21px;
    line-height: 1;
    font-weight: normal;
    color: #f05619;
    margin: 0 0 0 auto;
    text-transform:lowercase;
}
#entity-items ul.entry-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
#entity-items ul.entry-content li {
    display: flex;
    align-items: center;
    gap: 10px;
}
#entity-items ul.entry-content li img {
    height: 20px;
}

.items_head {
    margin-bottom: 30px;
}
.items_head > h5 {
    margin: 0;
}
.items_head ._items_head {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}
.items_head ._items_head > h2 {
    margin: 0;
    line-height: 1;
    font-size: 36px;
}
.items_head ._items_head > a {
    margin-left: auto;
    letter-spacing: 4px;
    color: #000;
    position: relative;
    padding-right: 15px;
    font-weight: 600;
    font-size: 12px;
}
.items_head ._items_head > a:after{
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 0;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(135deg);
}


@media screen and (max-width: 1239px) {
    #entity-items {
        grid-gap: 20px;
    }
    #entity-items ul.entry-content {
        gap: 30px;
    }
    #entity-items.aankoop .thumbnail .status {
        bottom: 0;
    }
}

@media screen and (max-width: 959px) {
    #entity-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .mcb-section-aanbod .container{
        max-width: 767px !important;
    }
}

@media screen and (max-width: 660px) {
    #entity-items {
        grid-template-columns: repeat(1, 1fr);
    }
}