.properties {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 25px;
}

.properties > .property {
    color: #666666;
}

.property .preview > img {
    height: 250px;
    object-fit: cover;
    width: 100% !important;
    border-radius: 15px;
}

.property .title {
    margin-top: 8px;
}

.property .price {
    margin-top: 8px;
    font-size: 24px;
}

.property .title h2 {
    font-weight: bold;
    color: #666666;
    margin-bottom: 0;
}

.property .footer {
    display: flex;
    gap: 30px;
    font-weight: bold;
}

.property .footer > div {
    display: flex;
    gap: 5px;
}

.property .footer img {
    height: 30px;
    margin: 0;
}

.property .footer .bathrooms {
    justify-self: center;
}

.filter-and-button-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.filter-and-button-wrapper label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--themecolor);
    font-weight: bold;
}

@media only screen and (max-width: 1000px) {
    .properties {
        grid-template-columns: 1fr;
    }
}