.c-vehicles-list {
  --vehicle-width:280px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--vehicle-width), 1fr));
  width: 100%;
  grid-gap: 2em; }
  .c-vehicles-list:before, .c-vehicles-list:after {
    display: none; }

@media all and (min-width: 800px) {
  .c-vehicles-list {
    --vehicle-width: 320px; } }

.c-vehicles-list__item {
  margin: 0;
  display: flex; }

.c-vehicle__financing-price {
  background: #333;
  background-image: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary-base) 70%, var(--color-primary-dark) 100%);
  padding: .2rem 1rem;
  color: #fff;
  font-weight: 700;
  position: absolute;
  bottom: 8px;
  left: 0;
  border-radius: 0 4px 4px 0;
  box-shadow: 3px 4px 3px rgba(0, 0, 0, 0.1);
  z-index: 5; }

.c-vehicle__btns-price {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  align-items: center;
  margin: .5rem 0; }

.c-vehicle__btns-price .u-h2 {
  margin: .5rem 0 0; }

.c-vehicle__btns-price .c-vehicle__action-link {
  display: block; }

.c-vehicles-list__item .c-vehicle-single__sub-title > * + *:before {
  content: '-';
  display: inline; }

.c-vehicles-list--container .c-vehicle,
.c-vehicle {
  padding: 1rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.05); }

.c-vehicle {
  display: flex;
  flex-direction: column;
  margin: 0; }
  .c-vehicle figure {
    margin: -1rem -1rem .5rem; }
  .c-vehicle__item {
    margin: 0;
    display: flex; }
  .c-vehicle__btns-price {
    margin-top: auto; }

.c-vehicle-single__sub-item--delivery.is--available {
  font-weight: 700; }

.c-icon-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 100%;
  margin: .5rem 0; }
  .c-icon-details li {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: center;
    grid-gap: .5rem; }
  .c-icon-details svg {
    width: 100%;
    fill: currentColor; }

.c-icon-details li span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }
.c-vehicle__attributes {
  line-height: 1.2;
}

.c-vehicles-list__item img {
  opacity: 1;
}