.property-isotope-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.property-filters {
  margin-bottom: 30px;
  text-align: center;
}

.filter-button {
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #3b463b;
  padding: 8px 16px;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.filter-button:hover,
.filter-button.active {
  background: #3b463b;
  color: white;
  border-color: #3b463b;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.property-grid-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  transition: all 0.3s ease;
}

.property-image img {
  width: 100%;
  height: auto;
  display: block;
}

.property-title {
  font-size: 1.2em;
  margin: 10px 0;
}

.property-acres,
.property-price,
.property-terms {
  margin: 5px 0;
}

.property-reserve-link {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}

.property-reserve-link:hover {
  background: #218838;
}
.property-grid-item {
  width: 100%;
  display: flex;
  font-size: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.property-grid-image {
  width: 20%;
  min-width: 100px;
}

.property-grid-image img {
  width: 100%;
}

.property-grid-item p {
  padding: 0 15px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .property-grid-item {
    width: calc(50% - 22px);
    display: block;
    margin: 10px;
  }

  .property-grid-image {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .property-grid-item {
    width: calc(33.333% - 20px);
  }
}
