/**
 * Worldwide Adverts–style listing card images:
 * clear, compact, fixed aspect, cover crop — no stretched/blurry full-res blobs.
 */

.wwa-card-media,
.vehicle-card-image,
.taxi-card-photo,
.mechanic-card-photo,
.wash-card-photo,
.product-card .product-image-wrap,
.vehicle-card .card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eef5 0%, #d5dde8 100%);
}

.wwa-card-media img,
.vehicle-card-image img,
.taxi-card-photo img,
.mechanic-card-photo img,
.wash-card-photo img,
.product-card .product-image,
.vehicle-card .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Keep search product images consistent when not wrapped */
.product-card .product-image {
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: none;
}

@media (max-width: 576px) {
  .wwa-card-media,
  .vehicle-card-image,
  .taxi-card-photo,
  .mechanic-card-photo,
  .wash-card-photo,
  .product-card .product-image-wrap,
  .vehicle-card .card-img-wrap {
    aspect-ratio: 16 / 10;
  }
}
