.build-image {
  height: 160px;
  overflow: hidden;
}

.build-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.builds-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.builds-intro {
  text-align: center;
  margin-bottom: 40px;
}

.builds-intro h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.builds-intro p {
  color: #666;
  font-size: 1rem;
}

.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.build-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.build-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.build-image {
  height: 240px;
  overflow: hidden;
  background: #111;
}

.build-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.build-card:hover .build-image img {
  transform: scale(1.05);
}


.build-image.vw-crafter { background: #2c3e50; }
.build-image.vivaro { background: #34495e; }
.build-image.sprinter { background: #1f2d3a; }
.build-image.transit { background: #3a3a3a; }

.build-card h2 {
  font-size: 1.1rem;
  padding: 15px;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .builds-intro h1 {
    font-size: 1.6rem;
  }
}

