/* Quiet editorial cards between the comparison table and inspection story. */
.home-page .market-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 28px;
}
.home-page .market-proof-grid article {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(22px, 2.4vw, 30px);
  min-width: 0;
  border: 1px solid #dce1d6;
  border-radius: 18px;
  background: #fcfaf5;
  box-shadow: inset 0 1px 0 #fff, 0 8px 24px -18px rgba(26, 55, 39, .22);
}
.home-page .market-proof-grid .proof-card-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}
.home-page .market-proof-grid .proof-card-label span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  margin: 0;
  border: 1px solid #cbd7c6;
  border-radius: 9px;
  background: #eaf0e5;
  color: #31543e;
  font-family: var(--font-body, sans-serif);
  font-size: 11px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.home-page .market-proof-grid .proof-card-label small {
  font-family: var(--font-body, sans-serif);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #5b705e;
  line-height: 1.4;
}
.home-page .market-proof-grid h3 {
  margin: 0 0 12px;
  font-family: var(--font-body, sans-serif);
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.35px;
  color: #193b2c;
  text-wrap: balance;
}
.home-page .market-proof-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #60675d;
}
@media (max-width: 760px) {
  .home-page .market-proof-grid {grid-template-columns: 1fr; gap: 12px;}
  .home-page .market-proof-grid article {padding: 22px; border-radius: 16px;}
  .home-page .market-proof-grid .proof-card-label {margin-bottom: 14px;}
}
