#vehicleList {
  list-style: none;
  display: grid;
  gap: 1vmin;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  margin: 0;
  padding: 0;
}

#vehicleList li {
}

.vehicle-item h3,
.vehicle-item h1 {
  font-size: 5mm;
}

#content {
  max-width: 1000px;
  margin: 0 auto;
}

#content .entry-content h1,
#content .entry-content h2,
#content .entry-content h3,
#content .entry-content h4,
#content .entry-content h5,
#content .entry-content h6,
h2.collection-item  {
  font-weight: bold;
}

#content h2 {
  font-weight: normal;
  font-size: 24.5px;
}

.post-header {
  padding-top: 7mm;
}

.logo-container {
  max-width: 10rem;
  text-align: center;
  margin: auto;
}

@media (min-width: 768px) and (max-width: 979px) {
  #vehicleList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #vehicleList {
    grid-template-columns: repeat(1, 1fr);
  }
}