/* CONTAINER */
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
} */

/* PROPERTY GRID */
.properties-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.property-item {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  box-sizing: border-box;
}

/* IMAGE SECTION */
.property-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5; /* Fallback color if image fails */
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT SECTION */
.property-content {
  padding: 20px;
}

.property-item h3 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
}

.price {
  margin: 15px 0;
  line-height: 1.4;
}

.price strong {
  display: block;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
}

.price span {
  display: block;
  color: #666;
  font-size: 1rem;
}

.property-item p {
  margin: 15px 0 20px 0;
  color: #555;
  line-height: 1.5;
  min-height: 60px;
}

.inquiry-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.inquiry-btn:hover {
  background-color: #333;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .property-item {
    min-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .properties-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .property-item {
    min-width: 100%;
  }
  
  .container {
    padding: 0 15px;
  }
}