/* Multilingual landing pages: vehicle grid (matches homepage thecars01–09) */
.lang-vehicles-section {
  margin: 28px 0 40px;
  clear: both;
}

.lang-vehicles-title {
  font-size: 18px;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.35;
}

.lang-vehicles-note {
  font-size: 13px;
  color: #555;
  margin: 0 0 16px;
  line-height: 1.6;
}

.lang-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-vehicle-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
  background: #fafafa;
  display: flex;
  flex-direction: column;
}

.lang-vehicle-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 310 / 166;
  background: #eee;
}

.lang-vehicle-name {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 6px;
  line-height: 1.4;
}

.lang-vehicle-meta {
  font-size: 12px;
  color: #555;
  margin: 0 0 8px;
  line-height: 1.45;
}

.lang-vehicle-price {
  font-size: 18px;
  font-weight: 700;
  color: #c45c12;
  margin: auto 0 10px;
}

.lang-vehicle-book {
  display: inline-block;
  text-align: center;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: #e48915;
  border-radius: 4px;
  text-decoration: none !important;
  min-height: 44px;
  line-height: 1.2;
  box-sizing: border-box;
}

.lang-vehicle-book:hover {
  background: #c97812;
}

@media screen and (max-width: 480px) {
  .lang-vehicle-grid {
    grid-template-columns: 1fr;
  }
}
