/* Card spec block — wheels and tires show their specs on cards */
.card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 12px;
  font-size: 0.75rem;
  color: var(--c-textMuted);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
  line-height: 1.35;
}
.card-specs > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-specs .spec-k { color: var(--c-textMuted); font-weight: 500; }
.card-specs .spec-v { color: var(--c-text); font-weight: 600; }
@media (max-width: 480px) {
  .card-specs { grid-template-columns: 1fr; }
}
