.custom-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  align-items: stretch;
}

.custom-post-grid .listing-item {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-post-grid .listing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.custom-post-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.custom-post-grid h2,
.custom-post-grid h3,
.custom-post-grid h4 {
  font-size: 18px;
  margin: 10px 0;
}

.custom-post-grid p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
