.car-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.car-item {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  background: #f9f9f9;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

.car-item img {
  max-width: 100%;
  object-fit: cover;
  object-position: right;
  height: 350px;
  display: block;
  margin: 0 auto;
}

.car-title {
  margin-top: 10px;
  font-size: 1.2em;
}

.car-list-item img {
    height: 200px; /* Set a fixed height for the images */
    object-fit: cover; /* Ensure the image covers the entire area */
    width: 100%; /* Ensure the image spans the entire width */
    display: block; /* Remove any inline-block spacing */
}

@media (max-width: 1990px) {
 
  .car-item img { height: 250px;}
}


@media (max-width: 1700px) {
 
  .car-item img { height: 200px;}
}




@media (max-width: 1200px) {
 
  .car-item img { height: 160px;}
}



@media (max-width: 1024px) {
  .car-item {
    flex: 1 1 calc(50% - 20px);
  }
  .car-item img {height: 200px;}
}

@media (max-width: 600px) {
  .car-item {
    flex: 1 1 100%;
  }
   .car-item img {height: 240px;}
}
