.ln4-property-page {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
}

.ln4-filter-toggle {
  display: none;
  background: #333;
  color: #fff;
  padding: 10px 15px;
  border: none;
  font-size: 16px;
  margin-bottom: 10px;
}

.ln4-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.ln4-sidebar {
  flex: 1;
  max-width: 300px;
  background-color: #c9c5c54e;
  padding: 20px;
  border-radius: 10px;
}

.ln4-filter-form input,
.ln4-filter-form select {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.ln4-plot-range {
  display: flex;
  gap: 10px;
}

.ln4-filter-button {
  background-color: #007BFF;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.ln4-property-list {
  flex: 3;
}

.ln4-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  width: 100%;
}


.ln4-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.ln4-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ln4-card-body {
  padding: 15px;
}

.ln4-card-body h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.ln4-card-body p {
  margin: 5px 0;
  color: #555;
  font-size: 14px;
}

.ln4-card-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

/* Responsive */

@media (min-width: 1024px) {
  .ln4-sidebar {
    position: sticky;
    top: 100px;
  }
}

@media (max-width: 768px) {
  .ln4-container {
    flex-direction: column;
  }

  .ln4-property-list {
    margin: 0px auto;
}

  .ln4-filter-toggle {
    display: block;
  }

  .ln4-sidebar {
    display: none;
    width: 100%;
  }

  .ln4-sidebar.active {
    display: block;
  }
}
