/* =============================================================================
   RumbleSeat — Help Scout Docs Custom Stylesheet
   Matched to rumbleseat.com design system (audited March 2026)

   DESIGN TOKENS (from rumbleseat.com :root)
   ─────────────────────────────────────
   --FH ......  'Plus Jakarta Sans', sans-serif  (headings)
   --FB ......  'DM Sans', sans-serif            (body)
   --blue ....  #23B5FF
   --blue-lt .  rgba(35,181,255,.08)
   --blue-md .  rgba(35,181,255,.16)
   --blue-dk .  rgba(35,181,255,.28)
   --txt .....  #09090b   (primary text — near-black)
   --txt2 ....  #3f3f46   (secondary text)
   --txt3 ....  #71717a   (muted text)
   --white ...  #ffffff
   --bg ......  #fafafa   (page canvas)
   --bg2 .....  #f4f4f5   (surface alt)
   --bg3 .....  #efefef
   --dk ......  #111213   (dark sections / footer)
   --border ..  #e4e4e7
   --border2 .  #d4d4d8
   --r .......  10px      (component radius)
   --rl ......  14px      (card radius)
   --mw ......  1160px    (max-width)
   ============================================================================= */


/* ---------------------------------------------------------------------------
   0.  GOOGLE FONTS — DM Sans (body) + Plus Jakarta Sans (headings)
   --------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');


/* ---------------------------------------------------------------------------
   1.  GLOBAL RESET & BASE
   --------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth !important;
  overflow-x: hidden !important;
}

body {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  color: #3f3f46 !important;
  background-color: #fafafa !important;
  line-height: 1.65 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

::selection {
  background: rgba(35,181,255,.18) !important;
  color: #09090b !important;
}

::-webkit-scrollbar       { width: 8px !important; }
::-webkit-scrollbar-track  { background: #fafafa !important; }
::-webkit-scrollbar-thumb  { background: #d4d4d8 !important; border-radius: 4px !important; }
::-webkit-scrollbar-thumb:hover { background: #71717a !important; }

a       { color: #23B5FF !important; transition: color .2s ease !important; }
a:hover { color: #0e9de6 !important; }


/* ---------------------------------------------------------------------------
   2.  HEADER / NAVBAR
   Clean white bar matching rumbleseat.com's sticky nav.
   --------------------------------------------------------------------------- */
.navbar-inner {
  background: #ffffff !important;
  background-image: none !important;
  border-bottom: 1px solid #e4e4e7 !important;
  box-shadow: none !important;
  filter: none !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.navbar .brand { padding-top: 14px !important; padding-bottom: 10px !important; }
.navbar .brand img {
  width: auto !important;
  height: 42px !important;
  max-width: 260px !important;
  object-fit: contain !important;
}

.navbar .nav > li > a,
.navbar .nav-collapse .nav > li > a {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: #09090b !important;
  letter-spacing: -.01em !important;
  text-shadow: none !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  transition: color .2s ease, background-color .2s ease !important;
}
.navbar .nav > li > a:hover {
  color: #23B5FF !important;
  background-color: rgba(35,181,255,.08) !important;
  opacity: 1 !important;
}

/* Active nav — subtle underline accent like rumbleseat.com, not a tinted bg */
.navbar .nav > li.active > a,
.navbar .nav > li.active > a:hover,
.navbar .nav > li.active > a:focus {
  color: #09090b !important;
  background: transparent !important;
  text-shadow: none !important;
  font-weight: 600 !important;
  position: relative !important;
}
/* Blue underline indicator for active nav item */
.navbar .nav > li.active > a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 2px !important;
  left: 18px !important;
  right: 18px !important;
  height: 2px !important;
  background: #23B5FF !important;
  border-radius: 1px !important;
}
.navbar .nav > li.active::after { border-top-color: #23B5FF !important; }

/* Contact nav — vertically centre */
.nav-collapse .nav:has(#contact) {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* "Contact" pill button — matches rumbleseat.com button style */
#contact a,
#contactMobile a {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #ffffff !important;
  background: #23B5FF !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 9px 22px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .2s ease !important;
  text-decoration: none !important;
}
#contact a:hover,
#contactMobile a:hover {
  background: #0e9de6 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(35,181,255,.25) !important;
}

/* Mobile hamburger */
.btn-navbar {
  background: transparent !important;
  border-color: #e4e4e7 !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}
.btn-navbar .icon-bar { background-color: #09090b !important; }


/* ---------------------------------------------------------------------------
   3.  HOMEPAGE SEARCH (#docsSearch)
   --------------------------------------------------------------------------- */
#docsSearch {
  background: #ffffff !important;
  border-bottom: 1px solid #e4e4e7 !important;
  padding: 48px 20px 44px !important;
}

#docsSearch h1 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 800 !important;
  font-size: 30px !important;
  letter-spacing: -.03em !important;
  line-height: 1.25 !important;
  margin-bottom: 24px !important;
}

/* Search input */
#searchBar:not(.sm) .search-query {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  color: #09090b !important;
  border-radius: 10px !important;
  border: 1.5px solid #e4e4e7 !important;
  padding-left: 22px !important;
  background: #ffffff !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
#searchBar:not(.sm) .search-query:focus {
  border-color: #23B5FF !important;
  box-shadow: 0 0 0 3px rgba(35,181,255,.12) !important;
  outline: none !important;
}
#searchBar .search-query::placeholder { color: #71717a !important; }

/* Search button */
#searchBar:not(.sm) button {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  background: #23B5FF !important;
  color: #ffffff !important;
  cursor: pointer !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  transition: background .2s ease, box-shadow .2s ease !important;
}
#searchBar:not(.sm) button:hover {
  background: #0e9de6 !important;
  box-shadow: 0 4px 14px rgba(35,181,255,.25) !important;
}

/* Live search dropdown */
#serp-dd {
  border: 1px solid #e4e4e7 !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.07) !important;
  overflow: hidden !important;
}
#serp-dd .result {
  border-bottom: 1px solid #f4f4f5 !important;
  padding: 12px 16px !important;
  transition: background .15s ease !important;
}
#serp-dd .result:hover { background: rgba(35,181,255,.08) !important; }
#serp-dd .result a {
  color: #09090b !important;
  font-family: 'DM Sans', sans-serif !important;
}
#serp-dd .result a:hover { color: #23B5FF !important; }
#serp-dd #noResults { color: #71717a !important; padding: 16px !important; }


/* ---------------------------------------------------------------------------
   4.  SIDEBAR SEARCH (#searchBar.sm on inner pages)
   --------------------------------------------------------------------------- */
#searchBar.sm .search-query {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: #09090b !important;
  background: #ffffff !important;
  border-color: #e4e4e7 !important;
  border-right: 1px solid #e4e4e7 !important;
  border-radius: 10px !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
#searchBar.sm .search-query:focus {
  border-color: #23B5FF !important;
  box-shadow: 0 0 0 2px rgba(35,181,255,.12) !important;
  outline: none !important;
}
#searchBar.sm button {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-color: transparent !important;
  color: #23B5FF !important;
}
#searchBar.sm button:hover {
  background: transparent !important;
  border-color: transparent !important;
  color: #0e9de6 !important;
}


/* ---------------------------------------------------------------------------
   5.  CONTENT AREA — CARD TREATMENT
   --------------------------------------------------------------------------- */
#contentArea {
  padding-top: 30px !important;
  min-height: calc(100vh - 78px) !important;
  display: flex !important;
  flex-direction: column !important;
  padding-bottom: 0 !important;
  box-sizing: border-box !important;
}
#contentArea::before,
#contentArea::after {
  display: none !important;
}
#contentArea > div:not(.row-fluid):not(.category-list) {
  display: none !important;
  padding: 0 !important;
}

.row-fluid {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
}
.row-fluid > aside.span3,
.row-fluid > .span9 {
  float: none !important;
}
.row-fluid > aside.span3 {
  order: -1 !important;
}
.row-fluid::before,
.row-fluid::after {
  display: none !important;
}

.span9,
.row-fluid > .span9 {
  background: none !important;
  background-image: none !important;
}

/* Content card — matches rumbleseat.com card style */
.span9 > .contentWrapper,
.row-fluid > .span9 > .contentWrapper {
  background: #ffffff !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 14px !important;
  padding: 36px 40px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04) !important;
  overflow: hidden !important;
  min-height: 0 !important;
}


/* ---------------------------------------------------------------------------
   6.  HOME PAGE — CATEGORY CARDS
   --------------------------------------------------------------------------- */
.category-list {
  text-align: center !important;
  padding-top: 8px !important;
}

.category-list .category,
.categoryList .category {
  background: #ffffff !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 14px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  padding: 28px 22px !important;
  transition: all .25s ease !important;
  position: relative !important;
}
.category-list .category:hover,
.categoryList .category:hover {
  border-color: rgba(35,181,255,.35) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.07) !important;
  transform: translateY(-2px) !important;
}

.category-list .category h3,
.category-list .category h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  margin-bottom: 4px !important;
  transition: color .2s ease !important;
}
.category-list .category:hover h3,
.category-list .category:hover h2 {
  color: #23B5FF !important;
}

.category-list .category p {
  color: #71717a !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  margin-top: 6px !important;
}
.category-list .category .article-count {
  color: #71717a !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  margin-top: 10px !important;
  opacity: .7 !important;
}

.twoCol .collection,
.threeCol .collection {
  background: #ffffff !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 14px !important;
  transition: all .25s ease !important;
}
.twoCol .collection:hover,
.threeCol .collection:hover {
  border-color: rgba(35,181,255,.35) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.07) !important;
  transform: translateY(-2px) !important;
}


/* ---------------------------------------------------------------------------
   7.  CATEGORY / SEARCH PAGE — INDEX VIEW
   --------------------------------------------------------------------------- */
.contentWrapper h1,
#categoryHead h1 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  letter-spacing: -.02em !important;
  line-height: 1.3 !important;
  margin-bottom: 6px !important;
  max-width: calc(100% - 260px) !important;
}

#categoryHead p,
.contentWrapper > p {
  color: #71717a !important;
  font-size: 14px !important;
  margin-bottom: 20px !important;
  max-width: calc(100% - 260px) !important;
}

/* Sort dropdown */
.sort {
  display: flex !important;
  align-items: center !important;
  width: auto !important;
  min-width: 0 !important;
}
.sort form { width: auto !important; }
.contentWrapper select,
#categoryHead select,
#sortBy,
.sort select {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #09090b !important;
  background: #ffffff !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 10px !important;
  padding: 8px 32px 8px 14px !important;
  cursor: pointer !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371717a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px 8px !important;
  box-shadow: none !important;
  line-height: 1.4 !important;
  width: auto !important;
  min-width: 220px !important;
  height: auto !important;
  max-height: none !important;
}
.contentWrapper select:hover,
.contentWrapper select:focus,
#sortBy:hover,
#sortBy:focus,
.sort select:hover,
.sort select:focus {
  border-color: #23B5FF !important;
  box-shadow: 0 0 0 2px rgba(35,181,255,.1) !important;
  outline: none !important;
}

/* Article list */
ul.articleList {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

ul.articleList > li {
  border-bottom: 1px solid #f4f4f5 !important;
  transition: background .15s ease !important;
}
ul.articleList > li:last-child { border-bottom: none !important; }
ul.articleList > li:hover { background: rgba(35,181,255,.08) !important; }

ul.articleList > li > a {
  font-family: 'DM Sans', sans-serif !important;
  color: #23B5FF !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 8px !important;
  transition: color .2s ease !important;
  border-bottom: none !important;
}
ul.articleList > li > a:hover { color: #0e9de6 !important; }

ul.articleList > li > a i,
ul.articleList > li > a .icon-article-doc {
  color: #d4d4d8 !important;
  font-size: 16px !important;
  flex-shrink: 0 !important;
  transition: color .2s ease !important;
}
ul.articleList > li:hover > a i,
ul.articleList > li:hover > a .icon-article-doc {
  color: #23B5FF !important;
}

ul.articleList > li > p {
  color: #71717a !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  padding: 0 8px 14px 34px !important;
  margin: -6px 0 0 0 !important;
}


/* ---------------------------------------------------------------------------
   8.  SIDEBAR
   --------------------------------------------------------------------------- */
aside.span3,
#sidebar {
  font-family: 'DM Sans', sans-serif !important;
}

aside.span3 { flex-shrink: 0 !important; }

/* "CATEGORIES" heading */
aside.span3 h3,
#sidebar h3 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  margin-bottom: 6px !important;
  padding-bottom: 6px !important;
  border-bottom: 2px solid #23B5FF !important;
}

aside.span3 .nav-list,
#sidebar .nav-list { padding: 0 !important; margin: 0 !important; }

aside.span3 .nav-list a,
aside.span3 a,
#sidebar a {
  color: #3f3f46 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  display: block !important;
  padding: 5px 0 5px 10px !important;
  border-left: 3px solid transparent !important;
  transition: color .2s ease, border-color .2s ease, background .2s ease !important;
}
aside.span3 .nav-list a:hover,
aside.span3 a:hover,
#sidebar a:hover {
  color: #23B5FF !important;
  border-left-color: rgba(35,181,255,.28) !important;
  background: rgba(35,181,255,.04) !important;
}

/* Active sidebar link */
aside.span3 .nav-list .active > a,
aside.span3 a.active,
aside.span3 .active > a,
#sidebar a.active,
#sidebar .active > a {
  color: #23B5FF !important;
  font-weight: 600 !important;
  border-left: 3px solid #23B5FF !important;
  padding-left: 10px !important;
  background: rgba(35,181,255,.08) !important;
}

#sidebar .nav-list .active > a,
aside.span3 .nav-list .active > a {
  display: flex !important;
  align-items: baseline !important;
  gap: 4px !important;
}

aside.span3 .icon-arrow {
  color: #23B5FF !important;
  flex-shrink: 0 !important;
}

/* Contact section in sidebar */
#sbContact,
#sbContactMobile {
  margin-top: 24px !important;
  padding-top: 16px !important;
  border-top: 1px solid #e4e4e7 !important;
}
#sbContact a,
#sbContactMobile a {
  color: #23B5FF !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border-left: none !important;
  padding-left: 0 !important;
}
#sbContact a:hover,
#sbContactMobile a:hover {
  color: #0e9de6 !important;
  padding-left: 0 !important;
  border-left-color: transparent !important;
  background: transparent !important;
}


/* ---------------------------------------------------------------------------
   9.  ARTICLE PAGE — CONTENT
   --------------------------------------------------------------------------- */

/* Article title */
h1.title,
#fullArticle h1,
.articleHead h1 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 700 !important;
  font-size: 30px !important;
  letter-spacing: -.02em !important;
  line-height: 1.3 !important;
  margin-bottom: 24px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid #f4f4f5 !important;
}

/* Admin edit */
a.admin-edit,
.admin-edit {
  font-size: 12px !important;
  color: #71717a !important;
  opacity: .5 !important;
  transition: opacity .2s ease !important;
  border-bottom: none !important;
}
a.admin-edit:hover,
.admin-edit:hover { opacity: 1 !important; color: #23B5FF !important; }

/* Print icon */
a.printArticle,
.printArticle {
  color: #71717a !important;
  transition: color .2s ease !important;
  border-bottom: none !important;
}
a.printArticle:hover,
.printArticle:hover { color: #23B5FF !important; }

/* Body text */
#fullArticle p,
#fullArticle li {
  font-family: 'DM Sans', sans-serif !important;
  color: #3f3f46 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}
#fullArticle p  { margin-bottom: 16px !important; }
#fullArticle li { margin-bottom: 8px !important; }

#fullArticle strong,
#fullArticle b {
  color: #09090b !important;
  font-weight: 600 !important;
}

/* Subheadings */
#fullArticle h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  margin-top: 32px !important;
  margin-bottom: 14px !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em !important;
}
#fullArticle h3 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  margin-top: 26px !important;
  margin-bottom: 10px !important;
}
#fullArticle h4 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #3f3f46 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-top: 22px !important;
  margin-bottom: 8px !important;
}

.contentWrapper h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: #09090b !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  margin-bottom: 16px !important;
}

/* Links in articles */
#fullArticle a {
  color: #23B5FF !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color .2s ease !important;
  border-bottom: 1px solid rgba(35,181,255,.25) !important;
}
#fullArticle a:hover {
  color: #0e9de6 !important;
  border-bottom-color: #0e9de6 !important;
}
#fullArticle a.admin-edit,
#fullArticle a.printArticle,
#fullArticle .video a,
#fullArticle a[class] {
  border-bottom: none !important;
}

/* Blockquotes */
#fullArticle blockquote {
  border-left: 3px solid #23B5FF !important;
  background: rgba(35,181,255,.08) !important;
  padding: 16px 20px !important;
  margin: 20px 0 !important;
  border-radius: 0 10px 10px 0 !important;
  color: #3f3f46 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}
#fullArticle blockquote p { margin-bottom: 6px !important; }
#fullArticle blockquote p:last-child { margin-bottom: 0 !important; }

/* Code */
#fullArticle pre {
  background: #f4f4f5 !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 10px !important;
  padding: 16px 20px !important;
  color: #09090b !important;
  font-size: 13.5px !important;
  overflow-x: auto !important;
  line-height: 1.6 !important;
}
#fullArticle code {
  background: rgba(35,181,255,.08) !important;
  color: #0e9de6 !important;
  padding: 2px 7px !important;
  border-radius: 6px !important;
  font-size: 13.5px !important;
}
#fullArticle pre code {
  background: transparent !important;
  color: #09090b !important;
  padding: 0 !important;
}

/* Images */
#fullArticle img {
  border-radius: 10px !important;
  border: 1px solid #e4e4e7 !important;
  max-width: 100% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04) !important;
  margin: 8px 0 !important;
}

/* Video embeds */
#fullArticle .video,
#fullArticle .video-youtube,
#fullArticle .video-responsive {
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid #e4e4e7 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04) !important;
  margin: 12px 0 20px !important;
}

/* Tables */
#fullArticle table {
  border-collapse: collapse !important;
  width: 100% !important;
  margin: 16px 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid #e4e4e7 !important;
}
#fullArticle th {
  background: #f4f4f5 !important;
  color: #09090b !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  padding: 12px 16px !important;
  border: 1px solid #e4e4e7 !important;
  text-align: left !important;
}
#fullArticle td {
  padding: 11px 16px !important;
  border: 1px solid #e4e4e7 !important;
  color: #3f3f46 !important;
  font-size: 14px !important;
}
#fullArticle tr:nth-child(even) td { background: #fafafa !important; }

/* Lists — blue bullets */
#fullArticle ul { list-style: none !important; padding-left: 0 !important; }
#fullArticle ul > li { padding-left: 22px !important; position: relative !important; }
#fullArticle ul > li::before {
  content: '' !important;
  position: absolute !important;
  left: 4px !important;
  top: 10px !important;
  width: 6px !important;
  height: 6px !important;
  background: #23B5FF !important;
  border-radius: 50% !important;
}

#fullArticle ol { counter-reset: item !important; list-style: none !important; padding-left: 0 !important; }
#fullArticle ol > li { counter-increment: item !important; padding-left: 32px !important; position: relative !important; }
#fullArticle ol > li::before {
  content: counter(item) !important;
  position: absolute !important;
  left: 0 !important;
  top: 2px !important;
  width: 22px !important;
  height: 22px !important;
  background: rgba(35,181,255,.08) !important;
  color: #23B5FF !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

#fullArticle ul ul,
#fullArticle ol ol,
#fullArticle ul ol,
#fullArticle ol ul {
  margin-top: 6px !important;
  margin-bottom: 2px !important;
}

/* Callout boxes */
#fullArticle .tip,
#fullArticle .callout-tip {
  border-left: 3px solid #2ECC71 !important;
  background: #F0FFF5 !important;
  padding: 14px 18px !important;
  margin: 18px 0 !important;
  border-radius: 0 10px 10px 0 !important;
}
#fullArticle .warning,
#fullArticle .callout-warning {
  border-left: 3px solid #F5A623 !important;
  background: #FFFBF0 !important;
  padding: 14px 18px !important;
  margin: 18px 0 !important;
  border-radius: 0 10px 10px 0 !important;
}
#fullArticle .info,
#fullArticle .callout-info {
  border-left: 3px solid #23B5FF !important;
  background: rgba(35,181,255,.08) !important;
  padding: 14px 18px !important;
  margin: 18px 0 !important;
  border-radius: 0 10px 10px 0 !important;
}
#fullArticle .danger,
#fullArticle .callout-danger {
  border-left: 3px solid #E74C3C !important;
  background: #FFF5F5 !important;
  padding: 14px 18px !important;
  margin: 18px 0 !important;
  border-radius: 0 10px 10px 0 !important;
}


/* ---------------------------------------------------------------------------
   10. ARTICLE FOOTER
   --------------------------------------------------------------------------- */
/* Horizontal rule before article footer — short centered bar like rumbleseat.com dividers */
.articleFoot hr,
#fullArticle ~ .articleFoot hr,
.contentWrapper hr {
  border: none !important;
  height: 2px !important;
  background: #e4e4e7 !important;
  width: 60px !important;
  margin: 0 auto 24px !important;
  border-radius: 1px !important;
}

.articleFoot {
  margin-top: 36px !important;
  padding-top: 24px !important;
  border-top: 1px solid #f4f4f5 !important;
}

.articleRatings {
  background: #fafafa !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 14px !important;
  padding: 18px 24px !important;
}
.articleRatings-question {
  font-family: 'DM Sans', sans-serif !important;
  color: #3f3f46 !important;
  font-size: 14px !important;
}
.rateAction { transition: transform .15s ease !important; cursor: pointer !important; }
.rateAction:hover { transform: scale(1.2) !important; }

.articleFoot .help {
  font-family: 'DM Sans', sans-serif !important;
  color: #3f3f46 !important;
  font-size: 14px !important;
}
.articleFoot .help a,
.contactUs a {
  font-family: 'DM Sans', sans-serif !important;
  color: #23B5FF !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
  border-bottom: none !important;
}
.articleFoot .help a:hover,
.contactUs a:hover {
  color: #0e9de6 !important;
  text-decoration: underline !important;
}

.articleFoot .icon-contact { color: #71717a !important; }

.articleFoot .lu,
.articleFoot time.lu {
  font-family: 'DM Sans', sans-serif !important;
  color: #71717a !important;
  font-size: 12px !important;
  font-style: normal !important;
}


/* ---------------------------------------------------------------------------
   11. SEARCH RESULTS PAGE
   --------------------------------------------------------------------------- */
#noResults {
  color: #71717a !important;
  font-family: 'DM Sans', sans-serif !important;
  padding: 32px 8px !important;
  text-align: center !important;
}


/* ---------------------------------------------------------------------------
   12. FOOTER — DARK, matching rumbleseat.com footer
   --------------------------------------------------------------------------- */
footer,
footer.center {
  font-family: 'DM Sans', sans-serif !important;
  background: #111213 !important;
  border-top: none !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  margin-left: -50vw !important;
  margin-top: auto !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  padding: 28px 20px 20px !important;
  box-sizing: border-box !important;
  text-align: center !important;
}
footer a {
  color: #a1a1aa !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: color .2s ease !important;
}
footer a:hover { color: #23B5FF !important; }
footer p { color: #a1a1aa !important; text-align: center !important; }

/* Clean up HelpScout footer text */
footer p {
  font-size: 0 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
}
footer p > span { display: none !important; }
footer p > a { font-size: 13px !important; color: #a1a1aa !important; }
footer p > a:hover { color: #23B5FF !important; }
footer p > a:first-of-type::before {
  content: "\00A9\00a0" !important;
  font-size: 13px !important;
  color: #a1a1aa !important;
}
footer p > a:first-of-type::after {
  content: "\00a0 2026.\00a0\00a0\00a0" !important;
  font-size: 13px !important;
  color: #a1a1aa !important;
}

/* No double border on inner pages */
.row-fluid ~ footer,
.row-fluid ~ footer.center {
  border-top: none !important;
}


/* ---------------------------------------------------------------------------
   13. BREADCRUMBS
   --------------------------------------------------------------------------- */
.breadcrumbs,
.breadcrumb {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: #71717a !important;
  margin-bottom: 16px !important;
}
.breadcrumbs a,
.breadcrumb a { color: #71717a !important; text-decoration: none !important; }
.breadcrumbs a:hover,
.breadcrumb a:hover { color: #23B5FF !important; }


/* ---------------------------------------------------------------------------
   14. FOCUS STATES (accessibility)
   --------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #23B5FF !important;
  outline-offset: 2px !important;
  border-radius: 4px !important;
}


/* ---------------------------------------------------------------------------
   15. RESPONSIVE
   --------------------------------------------------------------------------- */
@media (max-width: 979px) {
  .span9 > .contentWrapper,
  .row-fluid > .span9 > .contentWrapper {
    padding: 28px 24px !important;
  }
}

@media (max-width: 768px) {

  /* Header / Nav */
  .navbar .brand img { height: 36px !important; }

  .nav-collapse .nav:has(#contact),
  .nav-collapse .nav:has(#contactMobile) {
    position: static !important;
    top: auto !important;
    transform: none !important;
  }
  .nav-collapse.in,
  .nav-collapse.collapse.in {
    overflow: visible !important;
    padding: 8px 0 12px !important;
  }
  #contactMobile a {
    display: block !important;
    text-align: center !important;
    padding: 10px 16px !important;
    margin: 4px 0 0 !important;
  }

  /* Search */
  #docsSearch { padding: 32px 16px 28px !important; }
  #docsSearch h1 { font-size: 22px !important; }

  #searchBar:not(.sm) button span { display: none !important; }
  #searchBar:not(.sm) button .icon-search,
  #searchBar:not(.sm) button .icon-search.lp {
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }
  #searchBar:not(.sm) button {
    width: 46px !important;
    padding: 0 !important;
    text-align: center !important;
    border-radius: 0 10px 10px 0 !important;
  }
  #searchBar:not(.sm) .search-query {
    padding-right: 54px !important;
  }

  /* Category cards — stack */
  .category-list {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .category-list .category,
  .categoryList .category {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px 16px !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
  }

  /* Inner pages — stack layout */
  .row-fluid {
    flex-direction: column !important;
  }
  .row-fluid > aside.span3 {
    order: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    overflow-y: visible !important;
    margin-top: 24px !important;
  }
  .row-fluid > .span9 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  /* Content card */
  h1.title, #fullArticle h1 { font-size: 24px !important; }
  .contentWrapper h1,
  #categoryHead h1 {
    font-size: 22px !important;
    max-width: 100% !important;
  }
  #fullArticle h2 { font-size: 19px !important; }

  #categoryHead p,
  .contentWrapper > p {
    max-width: 100% !important;
  }

  .span9 > .contentWrapper,
  .row-fluid > .span9 > .contentWrapper {
    padding: 20px 18px !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
  }

  ul.articleList > li > a { padding: 12px 6px !important; }

  .sort {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    float: none !important;
    margin-bottom: 12px !important;
  }

  aside.span3 #searchBar.sm {
    margin-bottom: 16px !important;
  }

  footer, footer.center {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 480px) {
  #docsSearch h1 { font-size: 20px !important; }
  h1.title, #fullArticle h1 { font-size: 22px !important; }
  .contentWrapper h1 { font-size: 20px !important; }
  .span9 > .contentWrapper { padding: 16px 14px !important; }

  .category-list .category,
  .categoryList .category {
    padding: 16px 14px !important;
    margin-bottom: 10px !important;
  }

  footer, footer.center {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}


/* ---------------------------------------------------------------------------
   16. PRINT
   --------------------------------------------------------------------------- */
@media print {
  #fullArticle a { color: #0e9de6 !important; border-bottom: none !important; }
  .navbar, #docsSearch, footer, .articleFoot, aside.span3 { display: none !important; }
  .span9 > .contentWrapper {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
  }
}
