.card-vehicle {
  display: flex;
  flex-direction: column;
  background-color: var(--bs-white);
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 12px;
}

.vehicle-image {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.card-vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 20px;
}

/* Vehicle features */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--bs-gray-light);
  border-radius: 4px;
  padding: 4px 8px;
}

.feature img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.feature span {
  font-size: 12px;
  color: var(--bs-black);
  font-weight: lighter;
}

/* Vehicle info */
.vehicle-inner-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.vehicle-inner-info .vehicle-model-name {
  flex: 1;
}

.vehicle-brand {
    color: var(--bs-primary)
}

.vehicle-inner-info .vehicle-price-container {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.vehicle-inner-info .vehicle-body {
  color: #666666;
}

@media screen and (max-width: 460px) {
  .vehicle-inner-info {
    flex-direction: column;
  }

  .vehicle-inner-info .vehicle-price-container {
    text-align: left;
  }

}