.vehicle-article {
  background-color: #fff;
}
.vehicle-article.hidden {
  display: none;
}
.vehicle-image {
  /* display: none; */
  max-width: 100%;
  /* max-height: 226.467px; */
  aspect-ratio: 732/549;
  object-fit: cover;
}
.vehicle-image.display {
  display: block;
}
.vehicle-info {
  display: flex;
  flex-flow: column;
  color: #414e63;
  padding: 1.25rem;
  text-decoration: none;
}
.info-row {
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  color: #414e63;
}
.info-row.price-row {
  margin-top: .75rem;
  margin-bottom: .5rem;
}

.price-container {
  display: flex;
  flex-flow: column;
}
.price-container p {
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.price-container span {
  font-size: 1.5rem;
  font-weight: 600;
}
.price {
  color: #155e75;
}
.extra-info {
  font-size: 0.75rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.price-container .financed {
  background-color: #ecfeff;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.financed .bold {
  font-weight: 600;
  font-size: 1rem;
}
.name-text {
  font-size: 1.125rem;
  line-height: 1.625;
  margin: 0;
  font-weight: 400;
  letter-spacing: -.025em;
}
.info-text {
  font-family: 'Epilogue';
  font-size: 12px;
  line-height: 12px;
  letter-spacing: -0.3px;
  color: #414e63;
  font-weight: 300;
}
.eco_label {
  width: 1.75rem;
  height: 1.75rem;
}
.location {
  margin-top: 8px;
  display: flex;
  gap: .25rem;
  align-items: center;
  color: #000;
}
.location span {
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 640px) {
  #main_container {
    grid-template-columns: repeat(1,minmax(0,1fr));
    padding: 0 0.5rem;
  }
  .extra-info {
    font-weight: 300;
    font-size: 0.875rem;
  }
  .info-row.details-row {
    justify-content: flex-start;
    gap: 2rem;
  }
  .price-container p {
    font-weight: 300;
  }
  .financed .bold {
    font-size: 1.5rem;
  }
}