body {
    --project-grid-padding: 10px;
    --project-grid-margin-bottom: 50px;
}

.project-grid {
    width: calc(100% + 2 * var( --project-grid-padding ));
    margin-left: calc(-1 * var( --project-grid-padding ));
    display: flex;
    align-items:flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
}

.project-grid-item {
    display: block;
    width: 33.33%;
    padding: var( --project-grid-padding );
    margin-bottom: var( --project-grid-margin-bottom );
    color: inherit!important;
    font-family: inherit!important;
    font-size: inherit!important;
    font-weight: inherit!important;
    line-height: inherit!important;
    letter-spacing: inherit!important;
    word-spacing: inherit!important;
    text-decoration: none!important;
}

.project-grid-item-image {
    height: 0;
    padding-bottom: 122%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: calc(2* var( --project-grid-padding ) );
}

.project-grid-item:hover .project-grid-item-title {
    text-decoration: underline!important;
}

.project-grid-item-address {
    color: #a0a0a0!important;
}

.project-grid-item-subline {
    color: #a0a0a0!important;
}

.project-grid-show-more {
    text-align: center;
    margin-bottom: 60px;
    user-select: none;
}

.project-grid-show-more.loading {
    opacity: 0.5;
    cursor: working!important;
}

.project-grid-show-more a {
    color: inherit!important;
}

@media (max-width: 767px) {
    .project-grid-item {
        width: 50%;
    }
    
    body {
        --project-grid-margin-bottom: 25px;
    }

    .project-grid-show-more  {
        margin-bottom: 30px;
    }
}