/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 07 2025 | 07:52:39 */
/* Container for filtered vehicles */


.filtered-vehicles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between; /* ensures even spacing */
  box-sizing: border-box;
  margin: 0 auto;
}

.top-listings-home .filtered-vehicles-grid{flex-wrap: nowrap!important;}

/* Each vehicle card takes up about 1/3rd of the container */
.filtered-vehicles-grid .vehicle-card {
  flex: 1 1 calc(33.333% - 20px); /* subtract gap space as needed */
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Vehicle image styling */
.filtered-vehicles-grid .vehicle-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Card content styling */
.filtered-vehicles-grid .vehicle-card-content {
  padding: 1rem;
}

/* Title styling */
.filtered-vehicles-grid .vehicle-title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}
.filtered-vehicles-grid .vehicle-title a {
  text-decoration: none;
  color: #333;
}

/* Price styling */
.filtered-vehicles-grid .vehicle-price {
  color: #F36B25;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  font-weight: bold;
}

/* Meta row styling */
.filtered-vehicles-grid .vehicle-meta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.filtered-vehicles-grid .vehicle-meta span {
  background: #f0f0f0;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #666;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .filtered-vehicles-grid .vehicle-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .filtered-vehicles-grid .vehicle-card {
    flex: 1 1 100%;
  }
}
