/* vs-kleep.css — page-specific overrides for /vs-kleep/ and /en/vs-kleep/.
   The page reuses the landing-b design system end-to-end (nav, hero,
   compare table, FAQ, footer); this file only carries the few classes
   that don't appear on the home page. */

/* "Where Kleep is ahead" bullet list — neutral, factual presentation. */
.honest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.honest-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
}
.honest-list .bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
}

/* Hero "vs" sits inline between the two product names. Override the
   default block-display of <em> inside .hero-headline so the line reads
   "FittingMe.ai vs Kleep.ai" on one row on desktop. */
.hero-headline em {
  display: inline;
  margin: 0 0.25em;
  color: var(--accent);
  font-style: italic;
}
@media (max-width: 760px) {
  .hero-headline em {
    display: inline-block;
  }
}
