.galw {
  background-color: #f8f8f8;
}

.vehicle {
  --box-space: 20px;
  box-shadow: inset 0 0 0 1px #cbd3dc;
  margin-bottom: 40px;
}
.vehicle > img {
  aspect-ratio: 370 / 216;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.vdet {
  padding: var(--box-space);
}
.vdet h3 {
  margin-bottom: var(--box-space);
  font-family: "Man Bold";
  font-weight: 700;
  font-size: 21px;
  line-height: 24px;
  letter-spacing: 0.001em;
  color: #313c48;
}
.vdet ul {
  font-family: "Man Regular";
  list-style: none;
  margin-bottom: var(--box-space);
  font-size: 18px;
  line-height: 24px;
}
.vdet ul li {
  position: relative;
  padding-left: 18px;
}
.vdet ul li + li {
  margin-top: 4px;
}
.vdet ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #e40045;
  transform: translateY(-50%);
}
.vdet a {
  display: block;
  text-align: center;
  font-family: "Man Bold";
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  padding: 12px 24px;
  border: 2px solid #313c48;
}

@media (min-width: 992px) {
  .galw {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .vehicle {
    --box-space: 24px;
    margin-bottom: 48px;
  }
  .vehicle > img {
    aspect-ratio: 501 / 292;
  }
  .vdet h3 {
    font-size: 24px;
    line-height: 28px;
  }
}