/* VEHICLES LOOP */
.ccv-vehicle {
  border-radius: 8px;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  position: relative;
  width: calc(50% - 10px);
}
@media screen and (width > 768px) {
  .ccv-vehicle {
    width: calc(20% - 16.5px);
  }
}

.ccv-vehicle__image {
  background-color: transparent;
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.ccv-vehicle__image-link {
  display: inline-flex;
  flex-flow: column nowrap;
  outline: 0;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.ccv-vehicle__image-link img {
  aspect-ratio: 10 / 8;
  object-fit: cover;
}

.ccv-vehicle__content {
  border-width: 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  height: 100%;
  justify-content: flex-start;
  padding: 10px;
  width: 100%;
}

a.ccv-vehicle__title-link {
  color: #707070;
  font-family: "Roboto";
  font-size: 16px;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.ccv-vehicle:hover a.ccv-vehicle__title-link,
a.ccv-vehicle__title-link:hover {
  color: #333;
}

.ccv-vehicle__button,
.ccv-vehicle__button:visited {
  align-self: center;
  background-color: #93754f;
  border-radius: 4px;
  border: 1px solid #93754f;
  color: #fff !important;
  display: inline-flex;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 100%;
  margin-top: auto;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none !important;
  text-transform: none;
  transition: all 0.4s ease;
  width: auto;
}
.ccv-vehicle__button:hover {
  background-color: transparent !important;
  color: #93754f !important;
}
