.featured-listings h2 {
  text-align: center;
  font-size: 2rem;   /* optional: make it stand out */
  margin-bottom: 20px;
}
.featured-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.featured-card {
  flex: 1;
  max-width: 300px;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.featured-card img {
  width: 100%;
  border-radius: 8px;
}
.featured-card .badge {
  display: inline-block;
  background: gold;
  color: #333;
  padding: 5px 10px;
  margin: 10px 0;
  border-radius: 4px;
  font-weight: bold;
}