/* Product cards: minimum friction between the reader and the click.
   The price button sits directly under the product name (it used to follow a
   four-sentence verdict and the spec line — ~700px down on a phone), the price
   shows once (in the button), and the supporting text is capped so the card
   stays short. The full verdict, specs, pros and cons remain in the markup. */
.et-pick__body {
  display: flex;
  flex-direction: column;
}
.et-pick__name {
  order: 1;
}
.et-pick__buys {
  order: 2;
  margin-top: 0.5rem;
}
.et-pick__verdict {
  order: 3;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.et-pick__specs {
  order: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
/* Secondary links on a card (a guide, a matching part) are quiet text links, so the
   one button on the card is the price button. */
.et-pick__buys .et-buy--ghost {
  padding: 0.3em 0;
  box-shadow: none;
  background: none;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.et-pick__buys .et-buy--ghost:hover {
  box-shadow: none;
  background: none;
}
/* Every pick carries priceInCta, so the separate price label only repeats it. */
.et-pick__buys .et-price {
  display: none;
}
.et-flaws li:nth-child(n + 3) {
  display: none;
}

@media (max-width: 860px) {
  .et-pick__media img {
    width: 100%;
    max-height: 14rem;
    object-fit: contain;
  }
  .et-pick__buys .et-buy--primary {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
  .et-flaws {
    gap: 0.8rem;
    margin-top: 1.1rem;
    padding-top: 0.9rem;
  }
  .et-flaws li {
    font-size: 0.875rem;
  }
}
