.properties {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 25px;
}

.properties > .property {
    background: #262626;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px;
}

.property:hover {
    background: #262626;
    color: white;
    border: 3px solid #8CAC4D;
    border-radius: 5px;
}

.property .preview > img {
    height: 320px;
    object-fit: cover;
    width: 100% !important;
}

.property .title {
    height: 55px;
}

.property .footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    height: 80px;
}

.property .footer > div {
    display: flex;
    gap: 10px;
}

.property .footer img {
    height: 30px;
    margin: 0;
}

.property .footer .bathrooms {
    justify-self: center;
}

.property .footer .lots {
    justify-self: end;
}

.buy-filter-wrapper span {
    font-weight: bold;
    display: inline-block;
    margin-right: 5px;
}

.buy-filter-wrapper span:hover {
    color: #8CAC4D;
    cursor: pointer;
}

.buy-filter-wrapper span.active {
    color: #8CAC4D;
}

.filter-and-button-wrapper {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}