/* Short code CSS */
.vehicle-slider {
  margin: 30px 0;
}

.vehicle-card {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 15px;
  background: #fff;
}

.vehicle-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.vehicle-title {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
}

.vehicle-price {
  color: #e60000;
  font-weight: bold;
}


/* Short code CSS End*/

/* Search page CSS Start*/
.vehicle-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.vehicle-item {
  border: 1px solid #ddd;
  padding: 15px;
}

/* Search page CSS End*/

/* Single Vehicle page CSS Start*/
/* .single-vehicle {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
} */

.vehicle-header {
  text-align: center;
}

/* .vehicle-title {
  font-size: 2.2em;
  margin-bottom: 20px;
} */

.vehicle-featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.vehicle-details {
  margin: 30px 0;
}

.vehicle-meta {
  list-style: none;
  padding: 0;
}

.vehicle-meta li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
}

.vehicle-meta strong {
  display: inline-block;
  min-width: 120px;
}

.vehicle-content {
  margin-top: 40px;
  line-height: 1.6;
}

/* Single Vehicle page CSS End*/

