.vehicles {
  background: #f6f6f6;
}

.vehicles-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.vehicles-heading .section-head {
  max-width: 650px;
}

.vehicles-heading .section-head h2 {
  margin-bottom: 0;
}

.vehicles-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.vehicle-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 4px solid #000;
  box-shadow: 0 12px 35px #00000012;
  transition: transform .3s ease, box-shadow .3s ease;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px #00000022;
}

.vehicle-card.featured {
  border-bottom-color: var(--orange);
}

.vehicle-image {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
  background: #ddd;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.06);
}

.vehicle-image > span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  background: var(--yellow);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vehicle-copy {
  padding: 27px 26px 29px;
}

.vehicle-meta {
  display: flex;
  gap: 22px;
  color: #999;
  font-size: 11px;
  text-transform: uppercase;
}

.vehicle-meta b {
  margin-left: 5px;
  color: #000;
}

.vehicle-copy h3 {
  min-height: 58px;
  margin: 16px 0 12px;
  font: 600 24px/1.2 var(--display);
  text-transform: uppercase;
}

.vehicle-copy h3 a:hover {
  color: var(--orange);
}

.vehicle-copy > p {
  min-height: 68px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.vehicle-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e7e7e7;
}

.vehicle-bottom strong {
  font: 600 20px var(--display);
  color: #000;
}

.vehicle-bottom a {
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-bottom a:hover {
  color: var(--orange);
}

.vehicles-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  border: 1px dashed #bbb;
  color: #999;
  text-align: center;
}

@media (max-width: 1250px) {
  .nav-cta { display: none; }
  .nav-inner nav { gap: 17px; font-size: 13px; }
}

@media (max-width: 1000px) {
  .vehicles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .vehicles-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .vehicle-image { height: 240px; }
  .vehicle-copy h3, .vehicle-copy > p { min-height: 0; }
}
