.properties-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1rem;
    column-gap: 1.5rem;
    width: 96vw;
    margin: 0 2vw;
}
@media only screen and (min-width: 600px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 922px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
        margin: auto;
        width: 100%;
    }
}

.property-item h3 {
    margin: 0.5em 0;
    color: #5f2c7a;
    font-size: large;
    font-weight: 600;
}

.property-thumb {
    position: relative;
    width: 100%;
    height: 200px;
}

.property-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-thumb .banner-container {
    overflow: hidden;
    position: absolute;
    width: 200px;
    height: 200px;
    left: -2px;
    top: -2px;
}

.property-thumb .banner-container .banner {
    padding: 10px 60px;
    background-color: #f86a3c;
    position: absolute;
    text-align: center;
    line-height: 1.25em;
    letter-spacing: 1px;
    color: #f0f0f0;
    box-shadow: 0 0 5px rgba(95,44,122,.3);
    top: 20%;
    left: -30%;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.property-item .property-summary {
    margin: 0.5em 0.5em;
    display: flex;
    justify-content: flex-start;
}

.property-item .property-summary .property-summary-item {
    margin-right: 0.5rem;
}
.property-item .property-summary .pull-right {
    margin-left: auto;
    margin-right: 0;
}

.property-item .property-summary-item .fa {
    color: #f86a3c;
}