/* ──────────────────────────────────────────────────────────
   hea_page_whatsnew_strip.css
   Shared in-hero "what's new here" strip for public capability
   pages. Reuses What's New copy (wn.28/29/30) verbatim.

   Designed for dark-hero contexts (.kg-hero, .agentic-hero,
   .cap-hero). All three heroes render white text over a dark
   surface today, so the strip inherits that color scheme.

   Category chip colors align with the What's New timeline
   category pills on hea_whatsnew.html.
   ────────────────────────────────────────────────────────── */

.page-whats-new-strip {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.92);
}

.page-whats-new-strip__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-whats-new-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-whats-new-strip__link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}

.page-whats-new-strip__link:hover,
.page-whats-new-strip__link:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
}

.page-whats-new-strip__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.page-whats-new-strip__grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 780px) {
  .page-whats-new-strip__grid.two-up {
    grid-template-columns: 1fr;
  }
}

.page-whats-new-strip__card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 9, 18, 0.44);
}

.page-whats-new-strip__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-whats-new-strip__cat.conversation { color: #7c5cfc; }
.page-whats-new-strip__cat.intelligence { color: #4c8dff; }
.page-whats-new-strip__cat.quality      { color: #19a982; }

.page-whats-new-strip__title {
  margin: 2px 0 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}

.page-whats-new-strip__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
