/* inventory-landing.css */
/* Base layout – reuse patterns from your specials CSS */

#inventory-landing .container {
  padding-top: 50px;
  padding-bottom: 30px;
}

#inventory-page-title {
  margin: 0 auto 10px;
  max-width: 1140px;
}

.inventory-subtitle {
  margin-bottom: 30px;
  color: #555;
  font-size: 16px;
}

/* Reuse your flex row helper */
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}

/* Make Bootstrap cols flex nicely in this grid */
.row.display-flex > [class*='col-'] {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

/* Vehicle card (reuses .offer-container look) */

.vehicle-card {
  margin-bottom: 25px;
}

.vehicle-card .image-container,
.vehicle-card .offer-copy {
  -webkit-box-shadow: 0 1px 9px #bbbbbb, 0px 1px 5px #bbbbbb;
  box-shadow: 0 1px 9px #bbbbbb, 0px 1px 5px #bbbbbb;
  border-radius: 2px;
  background-color: #ffffff;
  transition: box-shadow .333s cubic-bezier(0.8, 0, 0.24, 1);
}

.vehicle-card .image-container {
  padding: 0;
  overflow: hidden;
}

.vehicle-card .image-container img {
  width: 100%;
  display: block;
}

.vehicle-card .offer-copy {
  text-align: center;
  padding: 15px 10px 10px;
}

.vehicle-card .vehicle-title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 5px;
}

.vehicle-card .vehicle-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.vehicle-card .vehicle-meta span + span::before {
  content: " • ";
  margin: 0 3px;
}

.vehicle-card .vehicle-price-label {
  font-size: 13px;
  text-transform: uppercase;
  color: #777;
}

.vehicle-card .vehicle-price-value {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #b62d38;
  margin-bottom: 5px;
}

.vehicle-card .vehicle-mileage {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.vehicle-card .cta-row {
  margin-top: auto;
  padding: 0 15px 15px;
  text-align: center;
}

.vehicle-card .btn.btn-cta {
  width: 100%;
}

/* Empty-state – reuse your .no-specials styling */

.no-specials {
  width: 100%;
  margin: 25px auto 10px;
  text-align: center;
}

.no-specials h2 {
  margin-bottom: 20px;
}

.no-specials .view-inventory {
  display: inline-block;
  vertical-align: top;
  max-width: 300px;
  font-size: 16px;
  margin: 10px;
  padding: 10px;
}

/* Responsive tweaks */

@media all and (max-width: 991px) {
  .three-column .vehicle-card {
    max-width: 560px;
    margin: 0 auto 25px;
    float: none;
  }

  .vehicle-card .btn.btn-cta {
    width: 100%;
  }
}

@media all and (max-width: 768px) {
  #inventory-landing .container {
    padding-top: 30px;
  }

  #inventory-page-title {
    font-size: 26px;
  }
}
