.property-listing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: auto;
}

.property-tile {
    background: #fff;
    width: 48%;
    max-width: 660px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border-radius: 8px;
    min-height: 500px;
}

.property-image {
    flex: 0 0 322px;
    background-size: cover;
    background-position: center;
    height: 322px;
}

.property-details {
    padding: 40px;
    text-align: center;
}

.property-details h2 {
    font-weight: 700;
    margin-bottom: 0.3em;
    padding-bottom: 10px;
}

.property-details h4 {
    font-weight: 700;
    margin-bottom: 0.3em;
}

.property-details p {
    padding-bottom: 0.2em;
}

.property-details h5 {
    margin-top: 1em;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4em;
    color: #000!important;
}

.property-button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.3em 1em;
    border: 1px solid #b87135;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

.property-filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 20px center;
    background-size: 24px;
    padding: 10px 50px 10px 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 26px;
    font-family: Cinzel, Georgia, "Times New Roman", serif!important;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
  .property-listing-grid {
    padding: 0 20px;
    gap: 20px;
  }

  .property-tile {
    width: 100%;
  }
}