.ab-vehicle-card{
  display:block;
  background:var(--ab-color-surface);
  border:1px solid var(--line,var(--ab-color-line));
  border-radius:14px;
  box-shadow:0 6px 22px rgba(0,0,0,.04);
  padding:26px;
}
.ab-vehicle-title{
  font-size:22px;
  line-height:1.3;
  margin:0 0 18px;
}
.ab-vehicle-title a,
.ab-vehicle-title-link{
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition:color .15s ease;
}
.ab-vehicle-title a:hover,
.ab-vehicle-title-link:hover{
  color:var(--ab-color-gold);
  text-decoration:none;
}
.ab-vehicle-image{
  aspect-ratio:4/3;
  background:var(--ab-color-surface-soft);
  border:1px solid var(--ab-color-line);
  border-radius:10px;
  color:#999;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  overflow:hidden;
}
.ab-vehicle-image-link{
  color:inherit;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  text-decoration:none;
  cursor:pointer;
}
.ab-vehicle-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:var(--ab-color-surface-soft);
  transition:transform .18s ease;
}
.ab-vehicle-image-link:hover img{
  transform:scale(1.015);
}
.ab-vehicle-specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  font-size:14px;
  margin-bottom:22px;
}
.ab-vehicle-spec{
  min-width:0;
}
.ab-vehicle-spec-label{
  color:var(--ab-color-muted);
  font-size:12px;
  margin-bottom:3px;
}
.ab-vehicle-spec-value{
  color:var(--ab-color-text);
  font-weight:700;
  overflow-wrap:anywhere;
}
.ab-vehicle-price-row{
  border-top:1px solid var(--line,var(--ab-color-line));
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin:12px 0 0;
  padding-top:14px;
  font-size:15px;
}
.ab-vehicle-price-row strong{
  font-size:22px;
  text-align:right;
}
.ab-vehicle-wagen{
  color:var(--muted,var(--ab-color-muted));
  font-size:13px;
  margin-top:8px;
}
.ab-vehicle-meta{
  color:var(--muted,var(--ab-color-muted));
  font-size:13px;
  line-height:1.45;
  margin-top:8px;
}
.card.vehicle{
  background:var(--ab-color-surface);
  border:1px solid var(--line,var(--ab-color-line));
  border-radius:14px;
  box-shadow:0 6px 22px rgba(0,0,0,.04);
  padding:26px;
}
.vehicle h3{
  font-size:22px;
  line-height:1.3;
  margin:0 0 20px;
}
.vehicle-title-link{
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition:color .15s ease;
}
.vehicle-title-link:hover{
  color:var(--ab-color-gold);
  text-decoration:none;
}
.car-img{
  aspect-ratio:4/3;
  background:var(--ab-color-surface-soft);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#999;
  margin-bottom:22px;
  overflow:hidden;
}
.car-img-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  color:inherit;
  text-decoration:none;
  cursor:pointer;
}
.car-img-link:hover img{
  transform:scale(1.015);
}
.car-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:var(--ab-color-surface-soft);
  transition:transform .18s ease;
}
.vehicle .specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  font-size:14px;
  margin-bottom:22px;
}
.vehicle .specs > div{
  min-width:0;
  overflow-wrap:anywhere;
}
.price-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin:12px 0;
  font-size:15px;
  gap:12px;
}
.price-row > :first-child{
  min-width:0;
  overflow-wrap:anywhere;
}
.price-row > :last-child{
  flex:0 0 auto;
  min-width:104px;
  text-align:right;
  white-space:nowrap;
}
.price-row > :last-child:empty{
  display:none;
}
.price-row strong{
  font-size:22px;
  text-align:right;
}
.small{
  font-size:13px;
  color:var(--muted,var(--ab-color-muted));
}
@media(max-width:560px){
  .ab-vehicle-title{font-size:20px}
  .ab-vehicle-specs{grid-template-columns:1fr}
  .ab-vehicle-price-row{align-items:flex-start;flex-direction:column}
  .ab-vehicle-price-row strong{text-align:left}
  .price-row{align-items:flex-start;flex-direction:column}
  .price-row strong{text-align:left}
  .price-row > :last-child{text-align:left}
  .vehicle{padding:20px}
}
