.vehicles .section-heading {
  text-align: center;
}

.vehicles .vehicles-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.vehicles .vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vehicles .vehicles-grid .single-service-card {
  width: 100%;
  height: auto;
  padding: 24px;
  box-shadow: 0 0 12px rgb(0 0 0 / 0.12);
}

.vehicles .vehicles-grid .single-service-card h2 {
  margin-top: 0 !important;
  margin-bottom: 12px;
  font-size: 30px;
}

.vehicles .vehicles-grid .single-service-card h2::before {
  display: none;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
}

.vehicle-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f7f9;
  margin-bottom: 20px;
}

.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.vehicle-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(2, 67, 87, 0.1);
  color: var(--brandColor);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vehicle-card p {
  margin-bottom: 0;
}

.vehicles-empty {
  padding: 32px;
  text-align: center;
  border: 1px solid var(--lineColor);
  border-radius: 16px;
}

@media only screen and (max-width: 1199px) {
  .vehicles .vehicles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .vehicles .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .vehicles .vehicles-grid .single-service-card {
    padding: 20px;
  }
}
