.land-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.land-ad-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.land-ad-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.land-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.land-content {
  padding: 25px;
}

.land-content h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.land-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.land-specs {
  display: flex;
  justify-content: space-between;
  background: var(--bg-color);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.spec {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}

.spec i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
}

.spec strong {
  color: var(--text-dark);
}

.land-desc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-block {
  display: block;
  width: 100%;
}
