/* ================================================================
   PYLON THEME — STRIVACITY SUPPORT PORTAL
   Based on Pylon default theme with Strivacity brand overrides
   ================================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); */

/* ----------------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  /* --body-font-family: "Poppins", system-ui, -apple-system, sans-serif; */
  /* --headlines-font-family: "Poppins", system-ui, -apple-system, sans-serif; */
  --pylon-bar-height: 0px; /* overridden by JS when the draft preview bar is present */
  --body-font-family: "interstate", system-ui, -apple-system, sans-serif !important;
  --headlines-font-family: "interstate", system-ui, -apple-system, sans-serif !important;

  /* Pylon primary (overridden by org brand color if set) */
  --primaryColor: #8443db;

  /* Strivacity brand palette */
  --stv-purple: #8443db;
  --stv-purple-dark: #6a35b0;
  --stv-purple-light: #DDB8FE;
  --stv-navy: #011936;
  --stv-bg: #fbf6ff;
  --stv-card-bg: #fbf6ff;
  --stv-white: #ffffff;
  --stv-text: #5c5c5c;
  --stv-border: #e6e6e6;

  /* Pylon neutral palette */
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-base: #ffffff;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
}

/* ----------------------------------------------------------------
   RESET + BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font-family);
  color: var(--stv-navy);
  background: var(--stv-bg);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.5;
}

.kb-content a:hover,
.kb-article-body a:hover,
.stv-footer a:hover,
li a:hover {
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6,
 [class*="heading"], [class*="headline"] {
  font-family: "interstate", system-ui, -apple-system, sans-serif !important;
}

p {
  font-family: "depot-new-web", system-ui, -apple-system, sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   To Remove Eventually - This Hides the Search
   ---------------------------------------------------------------- */

.kb-search-container { display: none; }
#kb-search-results { display: none; }

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.kb-page-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.kb-content-wrapper {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: center;
  padding: 0 5% 40px;
  background: var(--stv-bg);
  margin-top: 0;
}

.kb-collection-content-wrapper {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: center;
  padding: 0 5% 40px;
  background: var(--stv-bg);
}

.kb-collection-content-wrapper #kb-search-results {
  margin-top: 24px;
}

.kb-content {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  flex: 1;
}

/* ----------------------------------------------------------------
   HEADER / NAVBAR — always white, above the hero
   ---------------------------------------------------------------- */
.stv-header {
  background: var(--stv-white);
  border-bottom: none;
  position: sticky !important;
  top: var(--pylon-bar-height) !important;
  z-index: 100 !important;
  box-shadow: none;
}

.kb-header {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  padding: 0;
}

.kb-header-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  max-width: 1160px;
  width: 100%;
  align-items: center;
  margin: 0 auto;
  height: 71px !important;
  min-height: 71px !important;
  padding: 0 24px !important;
}

@media (min-width: 1208px) {
  .kb-header-inner {
    padding: 0 !important;
  }
}

.kb-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.kb-header-logo img,
.kb-logo-default,
.kb-logo-bright {
  height: auto;
  width: auto;
  max-width: 200px;
  vertical-align: middle;
}

/* Always show default logo since header is always white */
.kb-logo-bright {
  display: none !important;
}

.kb-logo-default {
  display: block !important;
}

/* ----------------------------------------------------------------
   HEADER NAV
   ---------------------------------------------------------------- */
.stv-header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.kb-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Center nav section — primary links */
.stv-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Right nav section — auth + submit */
.stv-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

@media (max-width: 1024px) {
  .kb-header-inner {
    grid-template-columns: 1fr auto;
  }
  .stv-nav-center {
    display: none;
  }
  /* Hide locale only — Sign in and hamburger stay visible and right-justified */
  .stv-nav-right #kb-locale {
    display: none;
  }
}

.kb-header-link {
  font-family: var(--headlines-font-family);
  font-size: 14px;
  font-weight: 800;
  color: var(--stv-navy);
  text-transform: uppercase;
  padding: 0 12px;
  transition: color 0.2s;
  white-space: nowrap;
}

.kb-header-link:hover {
  color: var(--stv-purple);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .kb-header-link {
    display: none;
  }
}

#kb-auth button,
.kb-auth-button {
  font-family: "interstate", system-ui, -apple-system, sans-serif !important;
  font-weight: 700;
  border: none !important;
  text-transform: uppercase;
}

#kb-auth button:hover {
  background: transparent !important;
  color: var(--stv-purple) !important;
  text-decoration: underline;
}

/* Hide dropdown during sign-in routing so it never visually opens */
#kb-auth.stv-routing .kb-auth-dropdown {
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ----------------------------------------------------------------
   DOCUMENTATION DROPDOWN
   ---------------------------------------------------------------- */
.stv-nav-dropdown {
  position: relative;
}

.stv-nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--headlines-font-family);
  font-size: 14px;
  font-weight: 800;
  color: var(--stv-navy);
  text-transform: uppercase;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.2s;
}

.stv-nav-dropdown-btn:hover {
  color: var(--stv-purple);
}

.stv-nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.stv-nav-dropdown-btn[aria-expanded="true"] .stv-nav-chevron {
  transform: rotate(180deg);
}

.stv-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--stv-white);
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  min-width: 220px;
  list-style: none;
  display: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stv-nav-dropdown-menu--open {
  display: block;
}

.stv-nav-dropdown-menu li {
  padding: 3px 8px;
}

.stv-nav-dropdown-menu li a {
  display: block;
  padding: 6px 4px;
  color: var(--stv-navy);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  transition: color 0.15s;
}

.stv-nav-dropdown-menu li a:hover {
  color: var(--stv-purple);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .stv-nav-dropdown {
    display: none;
  }
}

/* ----------------------------------------------------------------
   SUBMIT A REQUEST BUTTON
   ---------------------------------------------------------------- */
.stv-submit-request {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #010101;
  color: var(--stv-white) !important;
  padding: 10px 22px 10px 20px;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: var(--headlines-font-family);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #010101;
  margin-left: 12px;
  white-space: nowrap;
  min-height: 49px;
  transition: background-color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.stv-submit-request:hover {
  background: var(--stv-purple);
  border-color: var(--stv-purple);
  text-decoration: none;
  color: var(--stv-white) !important;
}

.stv-submit-arrow {
  flex-shrink: 0;
  color: #DDB8FE;
}

@media (max-width: 1024px) {
  .stv-submit-request:not(.stv-submit-request--mobile) {
    display: none;
  }
}

/* ----------------------------------------------------------------
   MOBILE HAMBURGER
   ---------------------------------------------------------------- */
.kb-header-hamburger,
.stv-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--stv-navy);
  flex-shrink: 0;
  margin-left: 8px;
}

@media (max-width: 1024px) {
  .kb-header-hamburger,
  .stv-hamburger {
    display: flex;
  }
}

/* ----------------------------------------------------------------
   MOBILE NAV
   ---------------------------------------------------------------- */
.kb-header-mobile-nav,
.stv-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--stv-white);
  border-top: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 50;
}

.kb-header--menu-open .kb-header-mobile-nav,
.kb-header--menu-open .stv-mobile-nav {
  display: flex;
}

@media (min-width: 1025px) {
  .kb-header--menu-open .kb-header-mobile-nav,
  .kb-header--menu-open .stv-mobile-nav {
    display: none;
  }
}

.kb-header-mobile-link {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 24px;
  color: var(--stv-navy);
  transition: background-color 0.15s;
  display: block;
}

.kb-header-mobile-link:hover {
  background-color: var(--neutral-100);
}

.stv-mobile-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neutral-500);
  padding: 8px 24px 4px;
  letter-spacing: 0.05em;
}

.stv-mobile-divider {
  height: 1px;
  background: #ddd;
  margin: 8px 0;
}

.stv-submit-request--mobile {
  margin: 8px 24px;
  justify-content: center;
}

/* ----------------------------------------------------------------
   AUTH BUTTON (Pylon component)
   ---------------------------------------------------------------- */
#kb-locale:empty {
  display: none;
}

.kb-auth-wrapper {
  position: relative;
}

.kb-auth-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--stv-navy) !important;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}

.kb-auth-button:hover {
  color: var(--stv-purple) !important;
  background: transparent !important;
  text-decoration: underline;
}

.kb-auth-logout {
  gap: 8px;
  padding: 0 12px;
}

.kb-auth-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.kb-auth-chevron {
  flex-shrink: 0;
}

/* Pre-render auth dropdown items so JS can find them without opening the dropdown */
#kb-auth .kb-auth-dropdown {
  display: block !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

#kb-auth .kb-auth-wrapper--open .kb-auth-dropdown,
#kb-auth .kb-auth-dropdown--open {
  visibility: visible !important;
  pointer-events: auto !important;
}

/* .kb-auth-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  white-space: nowrap;
  padding: 5px;
  background: var(--neutral-base);
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.kb-auth-dropdown-item {
  display: block;
  width: 100%;
  padding: 6px 12px;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--stv-navy) !important;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
  text-transform: none !important;
}

.kb-auth-dropdown-item:hover {
  background: transparent !important;
  color: var(--stv-purple) !important;
  text-decoration: underline;
} */

/* Locale Switcher */
.kb-locale-wrapper { position: relative; }
.kb-locale-button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--stv-navy);
  cursor: pointer;
  transition: opacity 0.2s;
}
.kb-locale-button:hover { opacity: 0.7; }
.kb-locale-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  white-space: nowrap;
  padding: 4px 0;
  max-height: 240px;
  overflow-y: auto;
  background: var(--neutral-base);
  border-radius: 4px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
  z-index: 100;
}
.kb-locale-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 8px 16px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--neutral-900);
  text-align: left;
  cursor: pointer;
}
.kb-locale-dropdown-item:hover { background: var(--neutral-100); }
.kb-locale-dropdown-item--active { font-weight: 500; }

/* ----------------------------------------------------------------
   HERO / BANNER — removed from inside banner, sits below header
   ---------------------------------------------------------------- */
.kb-banner {
  position: relative;
  z-index: 1;
  height: 420px;
  min-height: 420px;
  transition: height 500ms ease-in-out, min-height 500ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.kb-banner[data-kb-state="searching"] {
  height: 120px;
  min-height: 120px;
}

.kb-banner-bg {
  position: absolute;
  inset: 0;
  overflow: clip;
  z-index: -1;
}

/* Default hero background — Strivacity purple gradient if no image set */
.stv-hero-default-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #011936 0%, #8443db 60%, #6a35b0 100%);
  background-size: cover;
}

.kb-banner-bg-color {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.kb-banner-bg-image {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Content */
.kb-banner-content,
.stv-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 48px 24px 100px;
  text-align: center;
}

.kb-banner[data-kb-state="searching"] .kb-banner-content,
.kb-banner[data-kb-state="searching"] .stv-hero-content {
  padding-bottom: 12px;
}

/* Hero Text */
.stv-hero-text {
  opacity: 1;
  transition: opacity 400ms ease-in-out, transform 400ms ease-in-out;
}

.kb-banner[data-kb-state="searching"] .stv-hero-text {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.stv-hero-greeting {
  color: #ffffff;
  font-family: var(--headlines-font-family);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.stv-hero-subtitle {
  color: #ffffff;
  font-family: var(--body-font-family);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .stv-hero-greeting { font-size: 36px; }
  .stv-hero-subtitle { font-size: 16px; }
  .kb-banner { height: 340px; min-height: 340px; }
}

/* ----------------------------------------------------------------
   SEARCH — inherit Pylon defaults, keep .kb-search-container
   ---------------------------------------------------------------- */
.kb-search-container {
  position: relative;
  max-width: 100%;
  width: 512px;
  transition: width 500ms ease-in-out;
}

.kb-banner[data-kb-state="searching"] .kb-search-container {
  width: min(1000px, 90vw);
}

.kb-search-icon {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding-left: 12px;
  color: var(--neutral-500);
}

.kb-search-icon svg {
  width: 20px;
  height: 20px;
}

.KnowledgeBaseSearchInput {
  font-size: 14px;
  height: 44px;
  width: 100%;
  padding-left: 38px;
  padding-right: 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--neutral-base);
  font-family: var(--body-font-family);
  color: var(--neutral-900);
}

.KnowledgeBaseSearchInput:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}

.KnowledgeBaseSearchInput:focus {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  outline: 1px solid var(--primaryColor);
  outline-offset: 0;
}

.KnowledgeBaseSearchInput::placeholder {
  color: var(--neutral-500);
}

/* Search results visibility */
#kb-search-results {
  display: none;
}

.kb-banner[data-kb-state="searching"] ~ .kb-content-wrapper #kb-search-results,
.kb-banner[data-kb-state="searching"] ~ .stv-content-wrapper #kb-search-results {
  display: block;
}

.kb-banner[data-kb-state="searching"] ~ .kb-content-wrapper .kb-homepage-content,
.kb-banner[data-kb-state="searching"] ~ .stv-content-wrapper .kb-homepage-content {
  display: none;
}

/* ----------------------------------------------------------------
   STRIVACITY RESOURCE CARDS SECTION
   ---------------------------------------------------------------- */
.kb-homepage-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 0;
}

.stv-resource-section {
  position: relative;
  z-index: 5;
}

.stv-resource-cards {
  display: flex;
  flex-wrap: wrap;
  background: var(--stv-white);
  border-radius: 9px;
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.10);
  padding: 25px 15px 32px;
  margin-top: -100px;
}

.stv-resource-card {
  width: 31.333%;
  margin: 0 1%;
  border-radius: 12px;
  background: var(--stv-card-bg);
}

.stv-resource-card-inner {
  padding: 25px;
}

/* Icon + Title row */
.stv-resource-icon {
  text-align: center;
  margin-bottom: 8px;
}

.stv-resource-icon svg {
  display: inline-block;
}

.stv-resource-title-desc {
  text-align: center;
  margin-bottom: 16px;
}

.stv-resource-title-desc h2 {
  color: var(--stv-navy);
  font-family: var(--headlines-font-family);
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

.stv-resource-title-desc p {
  color: #5c5c5c;
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

/* Link list */
.stv-resource-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stv-resource-items li a {
  display: block;
  padding: 10px 0;
  color: var(--stv-navy);
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #e6e6e6;
  transition: color 0.15s;
  text-decoration: none;
}

.stv-resource-items li a:hover {
  color: var(--stv-purple);
  text-decoration: underline;
}

.stv-resource-items li.stv-view-more a {
  color: var(--stv-purple);
  border-bottom: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  padding: 10px 0;
}

.stv-resource-items li.stv-view-more a:hover {
  color: var(--stv-purple-dark);
  text-decoration: none;
}

/* Need Help bar */
.stv-need-help {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 40px 0 0;
  padding: 24px 0 8px;
  color: var(--stv-navy);
}

.stv-need-help p {
  font-size: 18px;
}

.stv-need-help span {
  font-size: 18px;
  font-weight: 500;
  margin-left: 4px;
}

.stv-need-help a {
  color: var(--stv-purple);
  text-decoration: underline;
}

.stv-need-help a:hover {
  color: var(--stv-navy);
}

/* Responsive cards */
@media (max-width: 900px) {
  .stv-resource-card {
    width: 48%;
    margin: 0 1% 20px;
  }
}

@media (max-width: 600px) {
  .stv-resource-card {
    width: 100%;
    margin: 0 0 20px;
  }

  .stv-resource-cards {
    margin-top: -40px;
  }

  .stv-need-help {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}

/* ----------------------------------------------------------------
   PYLON COLLECTIONS GRID (dynamic collections from KB settings)
   ---------------------------------------------------------------- */
.stv-collections-section {
  margin-top: 0;
}

.kb-collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.kb-collection-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  background: var(--stv-white);
  padding: 16px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.kb-collection-card:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
}

.kb-collection-card-icon {
  margin-bottom: 8px;
  flex-shrink: 0;
  color: var(--stv-purple);
  height: 24px;
}

.kb-collection-card-icon svg { width: 24px; height: 24px; }
.kb-collection-card-icon .kb-collection-custom-icon { width: 24px; height: 24px; object-fit: contain; }

.kb-collection-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.kb-collection-card-title {
  font-family: var(--headlines-font-family);
  font-weight: 600;
  color: var(--stv-navy);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.5;
}

.kb-collection-card-description {
  font-size: 14px;
  color: #5c5c5c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
  line-height: 1.5;
}

.kb-collection-card-count {
  margin-top: 8px;
  font-size: 12px;
  color: var(--neutral-500);
}

/* Popular Articles */
.kb-popular-articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kb-popular-articles-title {
  font-family: var(--headlines-font-family);
  font-size: 18px;
  font-weight: 600;
  color: var(--stv-navy);
}

.kb-article-card {
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  background: var(--stv-white);
  padding: 16px;
  transition: box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.kb-article-card:hover {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}

.kb-article-card-icon {
  flex-shrink: 0;
  color: var(--stv-purple);
  margin-right: 8px;
  height: 20px;
}

.kb-article-card-icon svg { width: 20px; height: 20px; }

.kb-article-card-title {
  flex: 1;
  color: var(--stv-navy);
}

.kb-article-card-chevron {
  width: 16px;
  height: 16px;
  color: var(--neutral-600);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ----------------------------------------------------------------
   FOOTER — custom template (.stv-footer) AND Pylon default (.kb-footer)
   ---------------------------------------------------------------- */

/* Pylon's built-in footer (rendered when Navigation/footer template uses default) */
.kb-footer {
  background: var(--stv-bg) !important;
  margin-top: 60px;
}

.kb-footer-divider {
  display: none !important;
}

.kb-footer-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 5% 20px;
}

.kb-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.kb-footer-sections {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.kb-footer-section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stv-navy);
  margin-bottom: 8px;
}

.kb-footer-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.kb-footer-section-link {
  font-size: 15px;
  color: var(--stv-navy);
  text-decoration: none;
  transition: color 0.2s;
}

.kb-footer-section-link:hover {
  color: var(--stv-purple);
}

.kb-footer-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.kb-footer-social-link svg {
  display: block;
}

/* Our custom footer template */
.stv-footer {
  background: var(--stv-bg);
  margin-top: 60px;
  border-top: none;
}

.stv-footer-main {
  padding: 30px 0 20px;
}

.stv-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1160px) {
  .stv-footer-inner {
    padding: 0;
    width: 90%;
  }
}

.stv-footer-logo img {
  max-height: 36px;
  vertical-align: middle;
}

.stv-footer-logo a:hover {
  opacity: 0.8;
}

.stv-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stv-social-link {
  display: inline-block;
  opacity: 1;
  transition: opacity 0.2s;
}

.stv-social-link:hover {
  opacity: 0.8;
}

.stv-footer-copyright {
  padding: 0 0 20px;
}

.stv-footer-copyright .stv-footer-inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.stv-footer-copyright p {
  font-size: 15px;
  color: var(--stv-navy);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.stv-footer-copyright a {
  color: var(--stv-navy);
  padding-left: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.stv-footer-copyright a:hover {
  color: var(--stv-purple);
}

/* Hide Pylon system footer elements (legal bar, powered-by) */
.kb-powered-by,
.kb-legal-links,
.kb-legal,
.kb-footer-legal,
[class*="kb-legal"],
[class*="powered-by"] {
  display: none !important;
}

/* ----------------------------------------------------------------
   COLLECTION PAGE
   ---------------------------------------------------------------- */
.kb-collection-content-wrapper {
  background: var(--stv-bg);
}

.kb-collection-page-content {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.kb-collection-page-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.kb-collection-page-icon {
  flex-shrink: 0;
  color: var(--stv-purple);
  height: 28px;
}

.kb-collection-page-icon svg { width: 28px; height: 28px; }
.kb-collection-page-icon .kb-collection-custom-icon { width: 28px; height: 28px; object-fit: contain; }

.kb-collection-page-title {
  font-family: var(--headlines-font-family);
  font-size: 24px;
  font-weight: 600;
  color: var(--stv-navy);
  line-height: 1.4;
}

.kb-collection-page-description {
  margin-top: 16px;
  color: #5c5c5c;
  line-height: 1.5;
}

.kb-collection-page-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

/* ----------------------------------------------------------------
   ARTICLE PAGE
   ---------------------------------------------------------------- */
.kb-article-content-wrapper {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: center;
  padding: 0 5% 40px;
  background: var(--stv-bg);
}

.kb-article-content-wrapper #kb-search-results {
  margin-top: 24px;
}

.kb-article-page-content {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.kb-article-layout {
  display: flex;
  gap: 44px;
  position: relative;
}

.kb-article-main {
  width: 100%;
  min-width: 0;
  max-width: 700px;
  margin: 0 auto;
}

.kb-article-header { margin-top: 16px; }

.kb-article-title {
  font-family: var(--headlines-font-family);
  font-size: 28px;
  font-weight: 700;
  color: var(--stv-navy);
  line-height: 1.4;
  word-break: break-word;
}

.kb-article-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--neutral-500);
}

.kb-article-body {
  margin-top: 24px;
  line-height: 1.7;
  font-size: 16px;
  color: var(--stv-navy);
  word-break: break-word;
}

.kb-article-body h1,
.kb-article-body h2,
.kb-article-body h3 {
  font-family: var(--headlines-font-family);
  font-weight: 600;
  color: var(--stv-navy);
}

.kb-article-body h1 { font-size: 22px; line-height: 1.3; margin-top: 2rem; margin-bottom: 1rem; }
.kb-article-body h2 { font-size: 20px; line-height: 1.3; margin-top: 1.75rem; margin-bottom: 1rem; }
.kb-article-body h3 { font-size: 18px; line-height: 1.3; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.kb-article-body p { margin: 0.4rem 0; line-height: 1.7; }

.kb-article-body a {
  color: var(--stv-purple);
  text-decoration: underline;
}

.kb-article-body a:hover { opacity: 0.8; }

.kb-article-body ul,
.kb-article-body ol {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.kb-article-body li { margin: 0.25rem 0; line-height: 1.7; }

.kb-article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.kb-article-body pre {
  background: var(--neutral-100);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin: 1rem 0;
  font-size: 14px;
  line-height: 1.5;
}

.kb-article-body code {
  background: var(--neutral-100);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 14px;
  color: #c0392b;
}

.kb-article-body pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

.kb-article-body blockquote {
  border-left: 3px solid var(--stv-purple-light);
  padding-left: 16px;
  margin: 1rem 0;
  color: var(--neutral-600);
}

.kb-article-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 14px; }
.kb-article-body th, .kb-article-body td { border: 1px solid var(--neutral-200); padding: 8px 12px; text-align: left; }
.kb-article-body th { background: var(--neutral-100); font-weight: 600; }
.kb-article-body hr { border: none; border-top: 1px solid var(--neutral-200); margin: 1.5rem 0; }

/* Article Sidebar */
.kb-article-sidebar {
  position: sticky;
  top: 40px;
  align-self: flex-start;
  width: 260px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .kb-article-sidebar { display: none; }
}

.kb-article-sidebar:not(:has(.kb-toc-item, .kb-related-articles, .kb-related-issues)) {
  display: none;
}

/* TOC */
.kb-toc-item {
  display: block;
  padding: 6px 0;
  border-left: 2px solid var(--neutral-200);
  font-size: 14px;
  color: var(--neutral-500);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  line-height: 1.4;
}

.kb-toc-item:hover { color: var(--neutral-800); border-left-color: var(--neutral-400); }
.kb-toc-item.active { color: var(--stv-navy); border-left-color: var(--stv-purple); }

/* Related Articles */
.kb-related-articles {
  display: flex;
  flex-direction: column;
  background-color: var(--neutral-100);
  border-radius: 8px;
  padding: 18px 24px;
}

.kb-related-articles-title {
  font-family: var(--headlines-font-family);
  font-weight: 600;
  color: var(--stv-navy);
  line-height: 22px;
}

.kb-related-article-link {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--neutral-600);
  text-decoration: none;
  line-height: 1.4;
}

.kb-related-article-link:hover {
  color: var(--stv-purple);
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   BREADCRUMBS
   ---------------------------------------------------------------- */
.kb-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.kb-breadcrumb-link {
  color: var(--stv-navy);
  text-decoration: none;
}

.kb-breadcrumb-link:hover { text-decoration: underline; }
.kb-breadcrumb-separator { color: var(--neutral-500); font-size: 14px; }
.kb-breadcrumb-current { color: var(--neutral-500); }

/* Article Badges */
.kb-article-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.kb-article-badges { display: flex; align-items: center; gap: 6px; }

.kb-article-badge {
  border-radius: 2px;
  background-color: var(--neutral-200);
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--neutral-800);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   SEARCH RESULTS
   ---------------------------------------------------------------- */
.kb-search-results-list { display: flex; flex-direction: column; gap: 24px; }

.kb-search-result-skeleton {
  height: 100px;
  width: 100%;
  background: var(--neutral-100);
  border-radius: 8px;
  animation: kb-pulse 2s ease-in-out infinite;
}

@keyframes kb-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.kb-search-result-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  margin-inline: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--neutral-200);
}

.kb-search-result-item:hover .kb-search-result-title { color: var(--stv-navy); }

.kb-search-result-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  margin-bottom: 4px;
  line-height: 1.5;
}

.kb-search-result-breadcrumbs svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--neutral-500); }

.kb-search-result-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral-800);
  transition: color 0.2s ease-in-out;
  line-height: 1.5;
}

.kb-search-result-highlight {
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kb-search-result-highlight em,
.kb-search-result-highlight mark,
.kb-search-result-highlight .highlight-result {
  font-style: normal;
  font-weight: 400;
  background-color: var(--blue-100);
}

.kb-search-no-results { padding: 24px 0; text-align: center; color: var(--neutral-500); }

.kb-search-results-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .kb-search-results-wrapper {
    flex-direction: row;
    gap: 16px;
  }

  .kb-search-results-wrapper > .kb-search-results-list {
    flex: 1;
    min-width: 0;
  }
}

/* ----------------------------------------------------------------
   FEEDBACK WIDGET
   ---------------------------------------------------------------- */
.kb-feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 24px;
  background: var(--neutral-100);
  border-radius: 8px;
}

.kb-feedback-title { font-size: 14px; color: var(--stv-navy); text-align: center; }

.kb-feedback-scores { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }

.kb-feedback-score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  padding-top: 2px;
}

.kb-feedback-score:hover, .kb-feedback-score.selected { background: var(--neutral-200); }

.kb-feedback-form { width: 100%; max-width: 400px; margin-top: 8px; }
.kb-feedback-label { font-size: 13px; color: var(--neutral-600); margin-bottom: 4px; }

.kb-feedback-textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--neutral-200);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  min-height: 56px;
  outline: none;
}

.kb-feedback-textarea:focus { border-color: var(--stv-purple); }

.kb-feedback-actions { display: flex; justify-content: flex-end; margin-top: 8px; }

.kb-feedback-submit {
  padding: 6px 16px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: white;
  background: var(--stv-purple);
  cursor: pointer;
}

.kb-feedback-submit:hover { background: var(--stv-purple-dark); }
.kb-feedback-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.kb-feedback-thanks { font-size: 14px; color: var(--stv-navy); text-align: center; }

/* ----------------------------------------------------------------
   NOT FOUND PAGE
   ---------------------------------------------------------------- */
.kb-not-found-content-wrapper {
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: center;
  padding: 0 5% 40px;
  background: var(--stv-bg);
}

.kb-not-found-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 64px;
}

.kb-not-found-title {
  font-family: var(--headlines-font-family);
  font-size: 30px;
  font-weight: 700;
  color: var(--stv-navy);
  margin-bottom: 16px;
}

.kb-not-found-description { font-size: 18px; color: var(--neutral-500); }

/* ----------------------------------------------------------------
   ARTICLE BODY — ProseMirror (Pylon rich text)
   ---------------------------------------------------------------- */
.kb-article-body-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.kb-article-body-skeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.kb-article-skeleton-line {
  height: 16px;
  width: 100%;
  background: var(--neutral-100);
  border-radius: 4px;
  animation: kb-pulse 2s ease-in-out infinite;
}

.kb-article-skeleton-line--lg { height: 20px; width: 60%; }
.kb-article-skeleton-line--md { width: 80%; }
.kb-article-skeleton-line--sm { width: 45%; }
.kb-article-skeleton-gap { height: 8px; }

/* ProseMirror content styles */
.kb-article-body .ProseMirror { outline: none; }
.kb-article-body .ProseMirror > * { max-width: 700px; margin-block: 0.75rem; }
.kb-article-body .ProseMirror p { margin-block: 0.4rem; line-height: 1.7; font-size: 16px; color: var(--stv-navy); }
.kb-article-body .ProseMirror p:first-child { margin-top: 0; }

.kb-article-body .ProseMirror h1 { font-size: 22px; font-weight: 700; line-height: 1.3; margin-top: 2rem; margin-bottom: 1rem; color: var(--stv-navy); }
.kb-article-body .ProseMirror h2 { font-size: 20px; font-weight: 600; line-height: 1.3; margin-top: 1.75rem; margin-bottom: 1rem; color: var(--stv-navy); }
.kb-article-body .ProseMirror h3 { font-size: 18px; font-weight: 600; line-height: 1.3; margin-top: 1.5rem; margin-bottom: 0.75rem; color: var(--stv-navy); }

.kb-article-body .ProseMirror h1,
.kb-article-body .ProseMirror h2,
.kb-article-body .ProseMirror h3 {
  font-family: var(--headlines-font-family);
  cursor: pointer;
  position: relative;
}

.kb-article-body .ProseMirror h1:hover::before,
.kb-article-body .ProseMirror h2:hover::before,
.kb-article-body .ProseMirror h3:hover::before {
  content: "#";
  position: absolute;
  left: -20px;
  color: var(--neutral-400);
}

.kb-article-body .ProseMirror a { color: var(--stv-purple); cursor: pointer; text-decoration: none; }
.kb-article-body .ProseMirror a:hover { text-decoration: underline; }

.kb-article-body .ProseMirror img { display: block; height: auto; width: 100%; max-width: 100%; border-radius: 4px; }

.kb-article-body .ProseMirror ol { list-style-type: decimal; margin: 0.75rem 0; padding: 0 2rem; }
.kb-article-body .ProseMirror ul { list-style-type: disc; margin: 0.75rem 0; padding: 0 2rem; }
.kb-article-body .ProseMirror ul li, .kb-article-body .ProseMirror ol li { margin-top: 0; margin-bottom: 0.5rem; }

.kb-article-body .ProseMirror code {
  border-radius: 4px;
  border: 1px solid var(--neutral-200);
  font-size: 14px;
  background-color: var(--neutral-100);
  color: #c0392b;
  padding: 1px 3px;
}

.kb-article-body .ProseMirror pre {
  overflow-x: auto;
  white-space: pre;
  border-radius: 4px;
  background-color: var(--neutral-100);
  border: 1px solid var(--neutral-200);
  font-size: 12px;
  line-height: 1.5;
  margin-block: 0.75rem;
  padding: 0.5rem;
}

.kb-article-body .ProseMirror blockquote[data-type="blockquote"] {
  border-left: 4px solid var(--stv-purple-light);
  padding: 8px 16px;
  margin-block: 0.75rem;
}

/* Callout blocks */
.kb-article-body .EditorCallout {
  display: flex;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
  padding: 16px;
  background-color: var(--neutral-100);
  color: var(--neutral-700);
}

.kb-article-body .EditorCallout[data-color="blue"] { border-color: #bfdbfe; background-color: rgba(219,234,254,0.7); color: #1e3a5f; }
.kb-article-body .EditorCallout[data-color="red"] { border-color: #fecaca; background-color: rgba(254,226,226,0.7); color: #7f1d1d; }
.kb-article-body .EditorCallout[data-color="orange"] { border-color: #fed7aa; background-color: rgba(255,237,213,0.7); color: #7c2d12; }
.kb-article-body .EditorCallout[data-color="yellow"] { border-color: #fde68a; background-color: rgba(254,249,195,0.3); color: #713f12; }
.kb-article-body .EditorCallout[data-color="green"] { border-color: #bbf7d0; background-color: rgba(220,252,231,0.5); color: #14532d; }
.kb-article-body .EditorCallout[data-color="purple"] { border-color: #e9d5ff; background-color: rgba(243,232,255,0.7); color: #581c87; }

.kb-article-body .EditorCallout-icon { flex-shrink: 0; margin-top: 3px; display: flex; align-items: flex-start; width: 18px; height: 18px; }
.kb-article-body .EditorCallout-icon svg { width: 18px; height: 18px; }
.kb-article-body .EditorCallout-content { min-width: 0; flex: 1; }

/* Accordion */
.kb-article-body-placeholder div[data-type="accordion_list"] {
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  margin-block: 0.75rem;
}

.kb-article-body-placeholder div[data-type="accordion"] {
  border-top: 1px solid var(--neutral-200);
}

.kb-article-body-placeholder div[data-type="accordion"]:first-child { border-top: none; }
.kb-article-body-placeholder div[data-type="accordion_summary"] { padding: 12px 16px; font-weight: 500; }
.kb-article-body-placeholder div[data-type="accordion_details"] { display: none; }

/* Tables */
.kb-article-body .ProseMirror .tableWrapper { margin-block: 2rem; overflow-x: auto; }
.kb-article-body .ProseMirror table { width: 100%; max-width: 700px; border-collapse: collapse; border-radius: 4px; word-break: break-word; }
.kb-article-body .ProseMirror table td, .kb-article-body .ProseMirror table th { min-width: 100px; padding: 8px; text-align: left; vertical-align: top; border: 1px solid var(--neutral-200); }
.kb-article-body .ProseMirror table td p, .kb-article-body .ProseMirror table th p { margin: 0; }
.kb-article-body .ProseMirror table th { font-weight: 600; background: var(--neutral-100); }

/* ----------------------------------------------------------------
   ASK AI
   ---------------------------------------------------------------- */
.kb-ask-ai {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-inline: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--neutral-200);
}

.kb-ask-ai-header { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--neutral-600); }
.kb-ask-ai-header svg { width: 14px; height: 14px; flex-shrink: 0; }
.kb-ask-ai-title { font-weight: 600; font-size: 16px; color: var(--stv-navy); line-height: 1.5; margin-bottom: 4px; }
.kb-ask-ai-response { line-height: 1.5; white-space: pre-line; }
.kb-ask-ai-toggle { font-size: 14px; font-weight: 500; color: var(--stv-purple); background: none; border: none; cursor: pointer; padding: 0; text-align: left; }
.kb-ask-ai-toggle:hover { text-decoration: underline; }

/* Related Issues */
.kb-related-issues { background-color: var(--neutral-100); border-radius: 8px; padding: 16px 20px; }
.kb-related-issues-title { font-family: var(--headlines-font-family); font-weight: 500; color: var(--stv-navy); }

/* ----------------------------------------------------------------
   SEARCH FILTER SIDEBAR
   ---------------------------------------------------------------- */
.kb-search-filter { width: 240px; flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; }
.kb-search-filter-heading { font-size: 12px; font-weight: 500; color: var(--neutral-600); }
.kb-search-filter-section-title { font-size: 14px; font-weight: 600; color: var(--stv-navy); font-family: var(--headlines-font-family); }
.kb-search-filter-checkboxes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }

.kb-filter-checkbox-label {
  --checked-color: var(--stv-purple);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 14px;
  color: var(--stv-navy);
}

/* ----------------------------------------------------------------
   ARTICLE BADGES + EDIT LINK
   ---------------------------------------------------------------- */
.kb-article-edit-link { display: inline-flex; align-items: center; gap: 8px; margin-left: 4px; }
.kb-article-edit-link a { font-weight: 500; color: var(--neutral-600); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.kb-article-edit-link a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   UTILITY
   ---------------------------------------------------------------- */
.nexus-tooltip__content {
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 12px;
  font-family: var(--body-font-family);
  font-weight: normal;
  color: white;
  background: rgba(28, 29, 47);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
  word-break: break-word;
  white-space: pre-wrap;
  max-width: 230px;
}
