.car-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10, 37, 61, 0.06);
}

.car-image-wrap {
  position: relative;
  height: 200px;
  background: #e5ebf1;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-image-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #7a8795;
  font-size: 14px;
}

.price-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #1e3248;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #d5dde7;
}

.car-body {
  padding: 12px;
}

.car-title {
  margin: 0;
  font-size: 22px;
}

.rating-row {
  margin-top: 8px;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 1px solid #d7e2ef;
  border-radius: 999px;
  padding: 0 10px;
  background: #f4f8fd;
  color: #2f5378;
  font-size: 12px;
  font-weight: 800;
}

.meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip {
  border: 1px solid #d3dde8;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  color: #4c637a;
  background: #f7fafc;
}

.desc {
  margin: 10px 0 0;
  color: #5d7188;
  font-size: 14px;
  line-height: 1.6;
  min-height: 44px;
}

.card-footer {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.owner-link,
.report-link {
  height: 40px;
  border-radius: 9px;
  border: 1px solid #c6d2e0;
  background: #fff;
  color: #2d4762;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.owner-link:hover {
  background: #f4f8fd;
}

.report-link {
  font-family: inherit;
  cursor: pointer;
  border-color: #e8b8b8;
  background: #fff7f7;
  color: #a34141;
}

.report-link:hover {
  background: #ffeaea;
}

.details-link {
  grid-column: 1 / -1;
  width: 100%;
  height: 42px;
  border-radius: 9px;
  border: 1px solid #c6d2e0;
  background: #f6f9fc;
  color: #2d4762;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.details-link:hover {
  background: #edf4fa;
}
