

html, body {
  font-size: 16px !important;
}

.kb-pg svg {
  fill: none !important;
}

.kb-pg {
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.kb-pg section {
  margin: 0 !important;
  padding: 0 !important;
}

.kb-pg h1,
.kb-pg h2,
.kb-pg h3,
.kb-pg h4 {
  margin: 0;
  letter-spacing: normal;
  color: inherit;
}

.kb-pg p,
.kb-pg li {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  color: inherit;
}

.kb-pg a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.kb-pg ul,
.kb-pg ol,
.kb-pg li {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .kb-pg .flex:not(.flex-col):not(.flex-column) {
    flex-direction: row !important;
  }
}

.kb-pg nav {
  margin: 0;
  width: auto;
  max-width: none;
  height: auto;
  gap: 0;
  display: block;
  flex-direction: initial;
  justify-content: initial;
  align-items: initial;
}

.kb-pg .display {
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: .98;
}
.kb-pg .display-md {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .kb-pg .display    { letter-spacing: -0.035em; }
  .kb-pg .display-md { letter-spacing: -0.02em; }
}
.kb-pg .emp {
  font-style: normal;
  font-weight: 700;
  color: #3476e9;
}

.kb-pg .search-box { position: relative; }
.kb-pg .search-box input {
  width: 100%;
  padding: 16px 16px 16px 50px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.kb-pg .search-box input:focus {
  outline: none;
  border-color: #3476e9;
  box-shadow: 0 0 0 4px rgba(52, 118, 233, 0.1);
}
.kb-pg .search-box .icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.kb-pg .search-box {
  
  z-index: 30;
}
.kb-pg .search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.04);
  max-height: 60vh;
  overflow-y: auto;
  text-align: left;
  z-index: 30;
}
.kb-pg .search-results[hidden] { display: none; }

.kb-pg .search-result {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.12s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.kb-pg .search-result:last-of-type { border-bottom: none; }
.kb-pg .search-result:hover,
.kb-pg .search-result.is-active {
  background: #f7f7f8;
}
.kb-pg .search-result.is-active .search-result-title {
  color: #3476e9;
}

.kb-pg .search-result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.kb-pg .search-result-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.kb-pg .search-result-title {
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0;
  transition: color 0.12s;
}
.kb-pg .search-result-meta {
  font-size: 11px;
  color: #9ca3af;
  margin-left: auto;
  flex-shrink: 0;
}
.kb-pg .search-result-excerpt {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
  margin-top: 4px;
}

.kb-pg .search-result mark,
.kb-pg .search-result-title mark {
  background: #fef3c7;
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
  font-weight: 700;
}

.kb-pg .search-results-footer {
  display: block;
  padding: 12px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #3476e9;
  background: #fafbfc;
  border-top: 1px solid #f3f4f6;
  text-decoration: none;
  transition: background 0.12s;
}
.kb-pg .search-results-footer:hover { background: #eaf1fd; color: #1a52b5; }

.kb-pg .search-results-empty,
.kb-pg .search-results-loading {
  padding: 24px 18px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}
.kb-pg .search-results-empty strong { color: #0a0a0a; font-weight: 600; }

.kb-pg .search-kbd {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  padding: 3px 7px;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  background: #fff;
  pointer-events: none;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.kb-pg .search-box.is-focused .search-kbd { display: none; }
@media (max-width: 640px) {
  .kb-pg .search-kbd { display: none; }
}

.kb-pg .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #fff;
  text-decoration: none;
  transition: all 0.15s;
}
.kb-pg .filter-chip:hover {
  border-color: #d1d5db;
  background: #f7f7f8;
}
.kb-pg .filter-chip.is-active {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.kb-pg .filter-chip-count {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.6;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}
.kb-pg .filter-chip.is-active .filter-chip-count {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.kb-pg .result-card {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e7e7e7;
  text-decoration: none;
  color: inherit;
  transition: all 0.18s;
  height: 100%;
}
.kb-pg .result-card:hover {
  border-color: #3476e9;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.kb-pg .result-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.kb-pg .result-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.35;
  margin: 0 0 8px;
}
.kb-pg .result-card-excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 16px;
  flex-grow: 1;
}
.kb-pg .result-card-meta {
  font-size: 11px;
  color: #9ca3af;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

.kb-pg .result-card-title mark,
.kb-pg .result-card-excerpt mark {
  background: #fef3c7;
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
  font-weight: 700;
}

.kb-pg .kb-article-layout {
  display: block;       
}
.kb-pg .kb-article-body {
  max-width: 100%;
  min-width: 0;         
}
.kb-pg .kb-article-toc { display: none; } 

@media (min-width: 1024px) {
  .kb-pg .kb-article-layout.has-toc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 4rem;
    align-items: start;
  }
  .kb-pg .kb-article-layout:not(.has-toc) .kb-article-body {
    margin: 0 auto;
  }
  .kb-pg .kb-article-toc {
    display: block;
    position: sticky;
    top: 110px;          
    align-self: start;
  }
}

.kb-pg .prose-mizzox table,
.kb-pg .prose-mizzox pre {
  max-width: 100%;
  overflow-x: auto;
}
.kb-pg .prose-mizzox img,
.kb-pg .prose-mizzox figure,
.kb-pg .prose-mizzox iframe,
.kb-pg .prose-mizzox video {
  max-width: 100%;
  height: auto;
}
.kb-pg .prose-mizzox * { word-wrap: break-word; overflow-wrap: anywhere; }

.kb-pg .kb-article-toc nav > a + a {
  margin-top: 2px;
}

.kb-pg .kb-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #9ca3af;
  margin: 0 0 24px;
}
.kb-pg .kb-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s;
}
.kb-pg .kb-breadcrumb a:hover { color: #3476e9; }
.kb-pg .kb-breadcrumb .sep { color: #d1d5db; }
.kb-pg .kb-breadcrumb .current { color: #374151; }

.kb-pg .tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f7f7f8;
  border: 1px solid #e7e7e7;
  font-size: 12px;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.15s;
}
.kb-pg .tag-pill:hover {
  background: #eaf1fd;
  border-color: #3476e9;
  color: #3476e9;
}

.kb-pg .toc-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #6b7280;
  text-decoration: none !important;
  line-height: 1.4;
  border-left: 2px solid transparent;
  transition: color 0.12s, background 0.12s;
}
.kb-pg .toc-link:hover {
  color: #0a0a0a !important;
  background: #f7f7f8;
}
.kb-pg .toc-link.active {
  color: #3476e9 !important;
  border-left-color: #3476e9;
  background: #eaf1fd;
  font-weight: 500;
}

.kb-pg .toc-link--h3 { padding-left: 22px; font-size: 12.5px; }

.kb-pg .sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #3476e9;
  margin: 0 0 8px;
  line-height: 1.4;
}
.kb-pg .sec-h {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 36px;
  color: #0a0a0a;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .kb-pg .sec-h { font-size: 40px; }
}

.kb-pg .related-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  transition: all 0.2s;
  text-decoration: none;
  background: #fff;
  color: inherit;
}
.kb-pg .related-card:hover {
  border-color: #3476e9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.kb-pg .related-card .title {
  font-weight: 500;
  font-size: 14px;
  color: #0a0a0a;
  line-height: 1.4;
}
.kb-pg .related-card .meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 6px;
}

.kb-pg .kb-text-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #3476e9;
  text-decoration: none;
  transition: transform 0.18s ease, color 0.18s ease;
}
.kb-pg .kb-text-cta:hover {
  color: #1a52b5;
  transform: translateY(-1px);
}

.kb-pg .btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #e7e7e7;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.18s;
}
.kb-pg .btn-ghost-light:hover {
  border-color: #3476e9;
  color: #3476e9;
  transform: translateY(-1px);
}

.kb-pg .prose-mizzox {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #374151 !important;
}

.kb-pg .prose-mizzox > *:first-child { margin-top: 0 !important; }

.kb-pg .prose-mizzox h2 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  color: #0a0a0a !important;
  margin: 56px 0 12px !important;
  padding: 0 !important;
  scroll-margin-top: 80px;
}
.kb-pg .prose-mizzox h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 19px !important;
  line-height: 1.4 !important;
  color: #0a0a0a !important;
  margin: 36px 0 12px !important;
  padding: 0 !important;
  scroll-margin-top: 80px;
}
.kb-pg .prose-mizzox h4 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #0a0a0a !important;
  margin: 24px 0 8px !important;
  padding: 0 !important;
}
.kb-pg .prose-mizzox p {
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: #374151 !important;
  margin: 0 0 16px !important;
}
.kb-pg .prose-mizzox p.lead {
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #1f2937 !important;
  margin-bottom: 24px !important;
}
.kb-pg .prose-mizzox ul,
.kb-pg .prose-mizzox ol {
  margin: 16px 0 !important;
  padding-left: 24px !important;
  list-style: revert;
}
.kb-pg .prose-mizzox ul li {
  list-style-type: disc !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #374151 !important;
  margin-bottom: 8px !important;
  padding: 0 !important;
}
.kb-pg .prose-mizzox ol li {
  list-style-type: decimal !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #374151 !important;
  margin-bottom: 8px !important;
  padding: 0 !important;
}
.kb-pg .prose-mizzox ul ul,
.kb-pg .prose-mizzox ol ol,
.kb-pg .prose-mizzox ul ol,
.kb-pg .prose-mizzox ol ul {
  margin: 6px 0 !important;
  padding-left: 20px !important;
}
.kb-pg .prose-mizzox a {
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: #3476e9 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.kb-pg .prose-mizzox a:hover { color: #1a52b5 !important; }

.kb-pg .prose-mizzox strong { color: #0a0a0a !important; font-weight: 600 !important; }
.kb-pg .prose-mizzox em     { font-style: italic !important; }

.kb-pg .prose-mizzox blockquote {
  border-left: 3px solid #3476e9 !important;
  padding: 4px 0 4px 20px !important;
  margin: 24px 0 !important;
  color: #374151 !important;
  font-style: italic !important;
  background: none !important;
}
.kb-pg .prose-mizzox blockquote p {
  color: #374151 !important;
  margin-bottom: 0 !important;
}

.kb-pg .prose-mizzox hr {
  border: none !important;
  border-top: 1px solid #e7e7e7 !important;
  margin: 40px 0 !important;
}

.kb-pg .prose-mizzox img,
.kb-pg .prose-mizzox figure,
.kb-pg .prose-mizzox iframe,
.kb-pg .prose-mizzox video {
  max-width: 100%;
  height: auto;
}
.kb-pg .prose-mizzox figure {
  margin: 28px 0 !important;
}
.kb-pg .prose-mizzox figcaption,
.kb-pg .prose-mizzox .wp-element-caption {
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  color: #9ca3af !important;
  text-align: center;
  margin-top: 8px;
}

.kb-pg .prose-mizzox .wp-block-table {
  margin: 28px 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: none !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.kb-pg .prose-mizzox .wp-block-table table,
.kb-pg .prose-mizzox table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  font-size: 14px !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.kb-pg .prose-mizzox thead th {
  background: #f7f7f8 !important;
  padding: 12px 8px 12px 16px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: #374151 !important;
  text-align: left !important;
  border: none !important;
  white-space: nowrap;
}
.kb-pg .prose-mizzox thead th:first-child {
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #9ca3af !important;
  padding: 16px !important;
}
.kb-pg .prose-mizzox tbody td {
  padding: 14px 16px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #374151 !important;
  vertical-align: middle !important;
  border: none !important;
  border-top: 1px solid #f3f4f6 !important;
}
.kb-pg .prose-mizzox tbody td:first-child {
  font-weight: 500 !important;
  color: #0a0a0a !important;
}
.kb-pg .prose-mizzox .wp-block-table figcaption,
.kb-pg .prose-mizzox .wp-block-table .wp-element-caption {
  position: static !important;
  transform: none !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  color: #9ca3af !important;
  opacity: 1 !important;
  padding: 11px 16px !important;
  border-top: 1px solid #f3f4f6 !important;
  background: #f7f7f8 !important;
  line-height: 1.5 !important;
  text-align: left !important;
  margin: 0 !important;
  width: 100% !important;
}

.kb-pg .prose-mizzox code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: #f3f4f6;
  color: #0a0a0a;
  padding: 2px 6px;
  border-radius: 4px;
}
.kb-pg .prose-mizzox pre {
  background: #0a0a0a;
  color: #e5e7eb;
  padding: 16px 18px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 100%;
}
.kb-pg .prose-mizzox pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.kb-pg .kb-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.kb-pg .kb-pagination-num,
.kb-pg .kb-pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #fff;
  border: 1px solid #e7e7e7;
  text-decoration: none;
  transition: all 0.15s;
}
.kb-pg .kb-pagination-num:hover,
.kb-pg .kb-pagination-arrow:hover {
  border-color: #3476e9;
  color: #3476e9;
}
.kb-pg .kb-pagination-num.is-active {
  background: #3476e9;
  color: #fff;
  border-color: #3476e9;
}
.kb-pg .kb-pagination-arrow { padding: 0 14px; }
.kb-pg .kb-pagination-gap {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #9ca3af;
  font-size: 13px;
}

.kb-pg .featured-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.2s;
  text-decoration: none;
  height: 100%;
  background: #fff;
  border: 1px solid #e7e7e7;
  color: inherit;
}
.kb-pg .featured-card:hover {
  border-color: #3476e9;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.kb-pg .featured-card .badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.kb-pg .cat-section {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.2s;
}
.kb-pg .cat-section:hover { border-color: #d1d5db; }
.kb-pg .cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 8px;
}
.kb-pg .cat-icon-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kb-pg .article-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.15s;
  text-decoration: none;
  color: inherit;
}
.kb-pg .article-link:last-of-type { border-bottom: none; }
.kb-pg .article-link:hover .title { color: #3476e9; }
.kb-pg .article-link .title {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.45;
  transition: color 0.15s;
}
.kb-pg .article-link .meta {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.kb-pg .btn-grn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border: none;
  cursor: pointer;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(22,163,74,.25);
  text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.kb-pg .btn-grn:hover {
  background: #15803d;
  box-shadow: 0 6px 20px rgba(22,163,74,.38);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .kb-pg > section:first-of-type .md\:py-24 { padding-top: 3.3rem !important; padding-bottom: 3.3rem !important; }
  .kb-pg > section:first-of-type .md\:py-20 { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
}
.kb-pg > section:first-of-type .py-16 { padding-top: 2.2rem !important; padding-bottom: 2.2rem !important; }

@media (max-width: 768px) {
  .kb-pg .flex-col > .btn-grn,
  .kb-pg .flex-col > .btn-out,
  .kb-pg .flex-col > .btn-dark,
  .kb-pg .flex-col > input[type="email"],
  .kb-pg .flex-col > input[type="text"],
  .kb-pg .flex-col > input[type="search"] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.kb-pg .kb-byline {
  background: #f7f7f8;
  border-left: 3px solid #3476e9;
  padding: 14px 18px;
  margin: 0 0 28px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #374151;
}
.kb-pg .kb-byline p { margin: 0 0 6px; font-size: 14px !important; line-height: 1.55 !important; }
.kb-pg .kb-byline p:last-child { margin-bottom: 0; }
.kb-pg .kb-byline strong { color: #0a0a0a; font-weight: 600; }
.kb-pg .kb-byline-disclaimer {
  font-size: 12px !important;
  color: #6b7280;
  font-style: italic;
  margin-top: 8px !important;
  padding-top: 8px;
  border-top: 1px solid #e7e7e7;
}

.kb-pg .kb-tldr {
  background: #eaf1fd;
  border: 1px solid #d6e4fb;
  border-radius: 12px;
  padding: 18px 22px 20px;
  margin: 0 0 32px;
}
.kb-pg .kb-tldr-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1e62d9;
  margin-bottom: 10px;
}
.kb-pg .kb-tldr ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.kb-pg .kb-tldr li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #0a0a0a !important;
  font-weight: inherit !important;
}
.kb-pg .kb-tldr li:last-child { margin-bottom: 0 !important; }
.kb-pg .kb-tldr li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 7px; height: 7px;
  background: #3476e9;
  border-radius: 50%;
}

.kb-pg .kb-fs {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-left: 4px solid #16a34a;
  border-radius: 0 10px 10px 0;
  padding: 16px 22px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #0a0a0a;
}
.kb-pg .kb-fs p { margin: 0 0 8px; font-size: 16px !important; line-height: 1.6 !important; }
.kb-pg .kb-fs p:last-child { margin-bottom: 0; }
