/* quote-lead-fit-20260926a
   Lead-tier cards show full labels in every locale.
   A narrow quote column stacks the three options; a wide row keeps three columns.
   No ellipsis. Prices and day counts are unchanged. */
html body .quote-lead {
  container-type: inline-size;
  container-name: quotelead;
}
html body .quote-lead-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@container quotelead (min-width: 44rem) {
  html body .quote-lead-options {
    grid-template-columns: repeat(3, minmax(12rem, 1fr));
  }
}
html body .quote-lead-chip {
  container-type: inline-size;
  container-name: leadchip;
  overflow: visible;
  white-space: normal;
  min-width: 0;
  height: auto;
  line-height: 1.4;
}
html body .quote-lead-chip-top {
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.25rem;
}
html body .quote-lead-chip-top strong,
html body .quote-lead-chip-top em {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.35;
  max-width: 100%;
}
html body .quote-lead-chip-days {
  flex-wrap: wrap;
  row-gap: 0.15rem;
}
html body .quote-lead-chip-days b,
html body .quote-lead-chip-days span {
  white-space: normal;
  line-height: 1.35;
}
html body .quote-lead-chip-split li span,
html body .quote-lead-chip-split li strong {
  display: block;
  max-width: 100%;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.4;
  overflow-wrap: break-word;
}
html body .quote-lead-chip-price {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.45;
  overflow-wrap: break-word;
}
@container leadchip (max-width: 15rem) {
  html body .quote-lead-chip-split {
    grid-template-columns: 1fr;
  }
}
