.properties-container{
    max-width: 1280px;
    margin: 0 auto;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    display: grid!important;
}
.grid__item {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 10px;
}
.property-image img{
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    height: 280px;
}

.property-heading {
    text-align: center;
    cursor: pointer;
    font-size: 2rem!important;
    font-weight: 700;
    padding-bottom: 6px;
    color: #004a9a;
    line-height: 1.2em;
}
.property-style {
    font-size: 1rem;
    color: #718096;
    text-align: center;
}
.text-gray-600 {
    color: #718096;
}
.text-center {
    text-align: center;
}
.leading-loose {
    line-height: 2;
}
.property-detail {
    color: #718096;
    font-size: .875rem;
    font-weight: 600;
    text-align: center;
}
.inline-block {
    display: inline-block;
}

.content-button-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    align-items: flex-end;
}
.property-button {
    margin-top: 1rem;
    cursor: pointer;
    color: #718096;
    border: 1px solid #e2e8f0;
    font-size: .875rem;
    font-weight: 600;
    padding: .25rem 1rem;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    border-radius: 4px;
}
.property__contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: .75rem;
}


@media (min-width: 478px){
    .properties-container{

    }
    .property-detail {
        text-align: left;
        font-size: .75rem;
    }
}
@media (min-width: 640px) {
    .properties-container{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-heading {
        text-align: left;
    }
    .property-style {
        font-size: 1.125rem;
        text-align: left;
    }
    .md\:text-left {
        text-align: left;
    }
    .property-detail {
        font-size: .875rem;
        text-align: left;
    }
    .property__contents {
        -webkit-box-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        padding: .75rem;
    }
}

@media (min-width: 980px) {

}

@media (min-width: 1100px) {
    .properties-container{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .property__contents {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        -webkit-box-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 1280px) {
    .property__contents {
        padding: 1rem;
    }
}