:root {
  --rc-title-lh: 1.25;
  --rc-title-lines-sm: 2;
  --rc-title-lines-lg: 3;
  --rc-badge-lh: 1.25;
  --rc-badge-lines: 2;
}

/* Title: responsive clamp without forced extra space */
.result-card-title {
  line-height: var(--rc-title-lh);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--rc-title-lines-sm);
  overflow: hidden;
}
@media (min-width: 992px) {
  .result-card-title {
    -webkit-line-clamp: var(--rc-title-lines-lg);
  }
}

/* Badges: clamp to two lines to keep rows aligned */
.result-card-badges {
  line-height: var(--rc-badge-lh);
  max-height: calc(var(--rc-badge-lines) * 1em * var(--rc-badge-lh));
  overflow: hidden;
}

/* Results card marker (hook for scripts) */
.results-card {}

/* Valuebar spacing now handled via Bootstrap utility classes on markup */
