:root {
  --kb-search-maxw: 900px;
  --kb-tiles-maxw: 1320px;
  --helion-blue: #00BEF5;
  --helion-blue-hover: #00A8DC;
  --helion-font: "Proxima Nova", Arial, sans-serif;
}

body {
  background: #fff;
  color: #000;
  font-family: var(--helion-font);
  font-size: 14px;
  line-height: 1.42857143;
  margin: 0 0 68px;
}

a {
  text-decoration: none;
}

a:visited {
  color: #000;
}

.header {
  height: auto;
  padding: 40px 0 28px;
  background: #f0eee8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#header-title {
  font-size: 4.5em;
  font-weight: 700;
  font-family: var(--helion-font);
  margin: 0 0 48px;
}

#header-subtitle {
  font-size: 1.5em;
  font-weight: 400;
  margin: 0 0 88px;
  color: #505254;
}

#search-input-home,
#cat-search-input-home,
#list-search-input {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 8px;
  box-shadow: 0 .3px .9px rgba(0, 0, 0, .1), 0 1.6px 3.6px rgba(0, 0, 0, .13);
  padding-left: 60px;
  font-size: 18px;
}

.navbar {
  background: #FFFFFF !important;
  height: 64px;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: none;
}

.navbar .navbar-nav,
.navbar .nav-ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
}

.navbar .navbar-nav > li > a,
.navbar .nav-ul > li > a {
  font-family: var(--helion-font);
  font-size: 16px;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  position: relative;
}

.navbar .navbar-nav > li::before,
.navbar .navbar-nav > li::after,
.navbar .nav-ul > li::before,
.navbar .nav-ul > li::after {
  content: none !important;
}

.navbar .navbar-nav > li,
.navbar .nav-ul > li,
.navbar .navbar-nav > li > a,
.navbar .nav-ul > li > a {
  border-left: none !important;
  border-right: none !important;
}

.navbar .separator,
.navbar .sep {
  display: none !important;
  visibility: hidden !important;
}

.navbar .nav-item--external > a {
  position: relative;
  color: #6B7280;
  transition: color 160ms ease;
}

.navbar .nav-item--external > a::after {
  content: "↗";
  display: inline-block;
  margin-left: .35em;
  font-size: .95em;
  line-height: 1;
  opacity: .95;
  transform: translateX(0) scale(1);
  transition: transform 160ms ease, color 160ms ease, opacity 160ms ease;
  color: currentColor;
}

.navbar .nav-item--external > a:hover,
.navbar .nav-item--external > a:focus {
  color: var(--helion-blue);
}

.navbar .nav-item--external > a:hover::after,
.navbar .nav-item--external > a:focus::after {
  transform: translateX(3px) scale(1.08);
  opacity: 1;
}

.navbar .nav-item--external > a::after {
  content: "↗" !important;
}

.navbar .navbar-nav > li > a::before,
.navbar .nav-ul > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: transparent;
  transition: background 150ms ease;
}

.navbar .navbar-nav > li > a:hover::before,
.navbar .nav-ul > li > a:hover::before,
.navbar .navbar-nav > li.active > a::before,
.navbar .nav-ul > li.active > a::before {
  background: var(--helion-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--helion-font) !important;
}

.topicsContainer {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--kb-tiles-maxw);
  margin: 40px auto 80px;
  padding: 0 24px;
}

.topic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  aspect-ratio: 1/1;
  min-width: 260px;
  background: #fff;
  border: 2px solid #0e51cb;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 24px;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  white-space: normal;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.topicTitle {
  text-align: center;
  padding: 0 12px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.25;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}


.topic img {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 8px auto;
}

@media (max-width: 1200px) {
  .topicsContainer {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .topicsContainer {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 600px) {
  .topicsContainer {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .topic {
    padding: 20px;
  }
}

.hel-subject-cards .topicsContainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
  margin: 24px 0;
  padding: 0;
  align-items: stretch;
}

.hel-subject-cards .topic {
  aspect-ratio: auto !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left;
  cursor: default;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: #F6F8FA;
  border: 1px solid #E6EAEE;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  padding: 20px;
  color: #0A2540;
}

.hel-subject-cards .topicIcon {
  object-fit: contain;
  display: block;
  margin: 0 0 6px 0 !important;
  align-self: flex-start;
}

.hel-subject-cards .topicTitle {
  font-family: var(--helion-font);
  font-size: 18px;
  font-weight: 600;
  color: #0A2540;
  margin: 0;
  padding: 0 !important;
  text-align: left !important;
  pointer-events: none;
}

.hel-subject-cards .topicDesc {
  font-family: var(--helion-font);
  font-size: 14px;
  font-weight: 400;
  color: #4A5568;
  margin: 0 0 8px 0;
  line-height: 1.5;
  margin-bottom: auto;
  min-width: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.hel-subject-cards .topicMore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--helion-blue);
  font-family: var(--helion-font);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 4px;
}

.hel-subject-cards .topicMore:hover,
.hel-subject-cards .topicMore:focus {
  color: var(--helion-blue-hover);
}

.hel-subject-cards .topicMore::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  display: inline-block;
}

@media (max-width: 1200px) {
  .hel-subject-cards .topicsContainer {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 600px) {
  .hel-subject-cards .topicsContainer {
    grid-template-columns: 1fr;
  }
}

.kb-layout {
  margin: 24px 0 40px;
  font-family: "Proxima Nova", Arial, sans-serif;

  flex-wrap: nowrap;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* linke Spalte */
.kb-layout .kb-nav {
  flex: 0 0 260px;
  max-width: 260px;
}

/* rechte Spalte */
.kb-layout .kb-content {
  flex: 1 1 auto;
  min-width: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .kb-layout {
    flex-direction: column;
  }

  .kb-layout .kb-nav,
  .kb-layout .kb-content {
    flex: 0 0 auto;
    max-width: 100%;
  }
}





.kb-layout .kb-main {
  flex: 1;
  min-width: 0;
}


.kb-layout .kb-nav-title {
  font-family: var(--helion-font);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #111827;
}

.kb-layout .kb-nav-list,
.kb-layout .category-list-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kb-layout .kb-nav-link-group {
  margin: 0 0 4px;
}

.kb-layout .kb-nav-link-group-title {
  font-family: var(--helion-font);
  font-size: 13px;
  font-weight: 600;
  margin: 12px 0 4px;
  color: #6B7280;
}

.kb-layout .kb-nav-link-group-title:first-child {
  margin-top: 0;
}

.kb-layout .kb-nav-link.active {
  position: relative;
  background: #DCE3E8;
}

.kb-layout .kb-nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--helion-blue);
  border-radius: 2px;
}

.kb-layout .kb-nav-list li,
.kb-layout .category-list-ul li {
  padding: 0;
  background: transparent;
}

.kb-layout .kb-nav-list li:nth-child(odd) .kb-nav-link,
.kb-layout .category-list-ul li:nth-child(odd) a {
  background: #F6F8FA;
}

.kb-layout .kb-nav-list li:nth-child(even) .kb-nav-link,
.kb-layout .category-list-ul li:nth-child(even) a {
  background: #E6EAEE;
}

.kb-layout .kb-nav-list .kb-nav-link,
.kb-layout .category-list-ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 10px 14px 10px 24px;
  border-radius: 4px;
  position: relative;
  margin: 0;
}

.kb-layout .kb-nav-list .kb-nav-link:hover,
.kb-layout .kb-nav-list .kb-nav-link:focus,
.kb-layout .category-list-ul li a:hover,
.kb-layout .category-list-ul li a:focus {
  background: #E9EEF2;
  text-decoration: underline;
}

.kb-layout .kb-nav-list .kb-nav-link.active {
  background: #DCE3E8 !important;
}


.kb-layout .kb-main-header {
  margin-bottom: 16px;
}

.kb-layout .kb-main-title {
  font-family: var(--helion-font);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111827;
}

.kb-layout .kb-main-subtitle {
  font-family: var(--helion-font);
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.kb-layout .kb-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 20px;
}

.kb-layout .kb-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #D1D5DB;
  background: #F9FAFB;
  font-family: var(--helion-font);
  font-size: 13px;
  color: #374151;
  cursor: pointer;
}

.kb-layout .kb-filter-pill.active {
  background: #E0F2FE;
  border-color: #38BDF8;
  color: #0369A1;
}

.kb-layout .kb-filter-pill-icon {
  font-size: 14px;
  line-height: 1;
}

.kb-layout .kb-list-empty {
  padding: 40px 0;
  text-align: center;
  font-family: var(--helion-font);
  font-size: 14px;
  color: #6B7280;
}

.kb-layout .kb-list-empty strong {
  font-weight: 600;
  color: #111827;
}

.kb-layout .kb-list-empty a {
  color: var(--helion-blue);
  text-decoration: underline;
}

.kb-layout .kb-list-empty a:hover {
  color: var(--helion-blue-hover);
}

.kb-layout .kb-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kb-layout .kb-list-item {
  border-bottom: 1px solid #E5E7EB;
  padding: 16px 0;
}

.kb-layout .kb-list-item:last-child {
  border-bottom: none;
}

.kb-layout .kb-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.kb-layout .kb-list-title {
  font-family: var(--helion-font);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #111827;
}

.kb-layout .kb-list-desc {
  font-family: var(--helion-font);
  font-size: 13px;
  color: #4B5563;
  margin: 0 0 6px;
}

.kb-layout .kb-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--helion-font);
  font-size: 12px;
  color: #6B7280;
}

.kb-layout .kb-list-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.kb-layout .kb-list-meta-badge {
  padding: 2px 6px;
  border-radius: 999px;
  background: #F3F4F6;
  color: #374151;
  font-size: 11px;
  font-weight: 500;
}

.kb-layout .kb-list-meta-icon {
  font-size: 14px;
  line-height: 1;
}

/* Breadcrumbs */

.kb-breadcrumb {
  font-family: var(--helion-font);
  font-size: 13px;
  color: #6B7280;
  margin: 0 0 12px;
}

.kb-breadcrumb a {
  color: #374151;
  text-decoration: none;
}

.kb-breadcrumb a:hover {
  text-decoration: underline;
}

.kb-breadcrumb-separator {
  margin: 0 4px;
  color: #9CA3AF;
}

/* Artikel-Header */

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

.kb-article-title {
  font-family: var(--helion-font);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111827;
}

.kb-article-subtitle {
  font-family: var(--helion-font);
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

/* Artikel-Meta */

.kb-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--helion-font);
  font-size: 12px;
  color: #6B7280;
  margin: 12px 0 16px;
}

.kb-article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.kb-article-meta-icon {
  font-size: 14px;
  line-height: 1;
}

.kb-article-meta-badge {
  padding: 2px 6px;
  border-radius: 999px;
  background: #F3F4F6;
  color: #374151;
  font-size: 11px;
  font-weight: 500;
}

/* Artikel-Body */

.kb-article-content {
  font-family: var(--helion-font);
  font-size: 14px;
  color: #111827;
  line-height: 1.6;
}

.kb-article-content h1,
.kb-article-content h2,
.kb-article-content h3,
.kb-article-content h4,
.kb-article-content h5,
.kb-article-content h6 {
  font-family: var(--helion-font);
  font-weight: 600;
  color: #111827;
  margin: 24px 0 12px;
}

.kb-article-content h1 {
  font-size: 24px;
}

.kb-article-content h2 {
  font-size: 20px;
}

.kb-article-content h3 {
  font-size: 18px;
}

.kb-article-content p {
  margin: 0 0 12px;
}

.kb-article-content ul,
.kb-article-content ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

.kb-article-content li {
  margin: 0 0 6px;
}

.kb-article-content a {
  color: var(--helion-blue);
  text-decoration: underline;
}

.kb-article-content a:hover {
  color: var(--helion-blue-hover);
}

.kb-article-content blockquote {
  margin: 16px 0;
  padding: 10px 14px;
  border-left: 3px solid #D1D5DB;
  background: #F9FAFB;
  border-radius: 4px;
}

.kb-article-content code {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  background: #F3F4F6;
  padding: 2px 4px;
  border-radius: 3px;
}

.kb-article-content pre {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  background: #111827;
  color: #E5E7EB;
  padding: 12px 14px;
  border-radius: 4px;
  overflow-x: auto;
}

/* Feedback-Panel */

.kb-feedback-panel {
  margin: 24px 0 0;
  padding: 16px 16px 14px;
  border-radius: 8px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  font-family: var(--helion-font);
}

.kb-feedback-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
}

.kb-feedback-panel-buttons {
  display: inline-flex;
  gap: 8px;
  margin: 4px 0 8px;
}

.kb-feedback-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #D1D5DB;
  background: #FFFFFF;
  font-size: 16px;
  color: #6B7280;
  cursor: pointer;
}

.kb-feedback-button:hover {
  background: #F3F4F6;
  color: #374151;
}

.kb-feedback-button.active {
  background: #E0F2FE;
  border-color: #38BDF8;
  color: #0369A1;
}

.kb-feedback-panel-note {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

/* Search Result Markierung */

.kb-search-highlight {
  background: #FEF3C7;
  border-radius: 2px;
}

/* Diverse Utility-Klassen */

.kb-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 999px;
  background: #F3F4F6;
  color: #374151;
  font-family: var(--helion-font);
  font-size: 11px;
  font-weight: 500;
}

.kb-tag--blue {
  background: #DBEAFE;
  color: #1D4ED8;
}

.kb-tag--green {
  background: #DCFCE7;
  color: #15803D;
}

.kb-tag--yellow {
  background: #FEF9C3;
  color: #A16207;
}

/* KB-Layout: Navigation links, Artikel rechts */
.kb-layout {
  margin: 24px 0 40px;
  font-family: "Proxima Nova", Arial, sans-serif;

  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* linke Spalte */
.kb-layout .kb-nav {
  flex: 0 0 260px;
  max-width: 260px;
}

/* rechte Spalte */
.kb-layout .kb-content {
  flex: 1 1 auto;
  min-width: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .kb-layout {
    flex-direction: column;
  }

  .kb-layout .kb-nav,
  .kb-layout .kb-content {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .hel-subject-cards .topic {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }

  .hel-subject-cards .topicTitle {
    font-size: 16px;
    line-height: 1.3;
  }

  .hel-subject-cards .topicDesc {
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .hel-subject-cards .topicMore {
    align-self: flex-start;
    font-size: 13px;
    margin-top: 0;
    white-space: normal;
  }
}

/* 2. Nur Mobile anpassen, Desktop so lassen wie vorher */
@media (max-width: 600px) {

  .hel-subject-cards .topic {
    display: block;
    padding: 16px;
    text-align: left;
  }


  .hel-subject-cards .topicTitle {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 6px 0;
    white-space: normal;
  }

  .hel-subject-cards .topicDesc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 8px 0;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  .hel-subject-cards .topicMore {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    margin-top: 0;
    white-space: normal;
  }
}
/* Mobile: Themengebiete-Tabs wie der Block darunter */
@media (max-width: 768px) {

  /* Gleiche Balkenhöhe + volle Breite */
  .kb-layout .kb-nav-list li,
  .kb-layout .category-list-ul li {
    margin-bottom: 4px;
  }

  .kb-layout .kb-nav-list .kb-nav-link,
  .kb-layout .category-list-ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;        /* weniger Höhe, wie der untere Balken */
    font-size: 13px;          /* kleinere Schrift */
    line-height: 1.3;
    border-radius: 4px;
    text-align: left;
    white-space: normal;
    word-break: break-word;
  }

  /* aktiver Tab nur leichte Hervorhebung, wie unten */
  .kb-layout .kb-nav-list .kb-nav-link.active,
  .kb-layout .category-list-ul li a.active {
    background: #E5E7EB;      /* nah am unteren Balken */
    font-weight: 600;
    position: relative;
  }

  .kb-layout .kb-nav-list .kb-nav-link.active::before,
  .kb-layout .category-list-ul li a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--helion-blue);
    border-radius: 2px;
  }

  /* Content-Balken unten auch etwas kompakter */
  .kb-layout .kb-content .kb-list-item,
  .kb-layout .kb-content .kb-article-content > div {
    padding: 8px 16px;
    font-size: 13px;
  }
}
/* Haupt-Titel kleiner + sauberes Umbrechen */
.kb-main-title,
.kb-article-title {
  font-size: clamp(20px, 2.8vw, 24px); /* war 28px */
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;      /* bricht lange Wörter */
  word-break: normal;
  hyphens: auto;                /* Silbentrennung, wenn Browser/Language es zulässt */
}

/* Optional: auf sehr kleinen Screens noch kompakter */
@media (max-width: 600px) {
  .kb-main-title,
  .kb-article-title {
    font-size: clamp(18px, 5vw, 22px);
  }
}

/* 1. Mobile: H2 / Haupttitel kleiner */
@media (max-width: 768px) {

  /* Überschrift "Themengebiete" und ähnliche H2 */
  .kb-layout .kb-main-title,
  .kb-article-content h2 {
    font-size: 16px;
    line-height: 1.2;
  }

  /* 2. Tabs unter "Themengebiete" auf gleiche Breite wie VITOVOLT 300 */

  /* Container bündig wie Content */
  .kb-layout {
    padding: 0 16px;
  }

  .kb-layout .kb-nav,
  .kb-layout .kb-content {
    width: 100%;
    max-width: 100%;
  }

  .kb-layout .kb-nav-list,
  .kb-layout .category-list-ul {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .kb-layout .kb-nav-list li,
  .kb-layout .category-list-ul li {
    width: 100%;
    margin-bottom: 4px;
  }

  .kb-layout .kb-nav-list .kb-nav-link,
  .kb-layout .category-list-ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 16px;        /* gleiche Innenabstände wie VITOVOLT‑Block */
    font-size: 13px;
    line-height: 1.3;
    border-radius: 4px;
    white-space: normal;
    word-break: break-word;
  }
}
/* Global Search Results*/

.kb-back a {
  text-decoration:none;
  font-family: var(--helion-font);
}

.kb-back a:hover {
  text-decoration:underline;
}

.kb-card-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:16px;
  margin:16px 0 24px;
}

.kb-card {
  background:#fff;
  border:1px solid #e9ecef;
  border-radius:12px;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
  transition:.15s;
}

.kb-card:hover {
  border-color:#d0d7de;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
  transform:translateY(-1px);
}

.kb-card-link {
  display:block;
  color:inherit;
  text-decoration:none;
  border-radius:12px;
  font-family: var(--helion-font);
}

.kb-card-link:focus-visible {
  outline:3px solid #0d6efd55;
  outline-offset:2px;
}

.kb-card-body {
  padding:14px 16px;
}

.kb-card-title {
  font-family: var(--helion-font);
  font-size: clamp(14px, 1.2vw, 18px); 
  font-weight: 700;
  color: #0d6efd;
  margin: 0 0 6px;
}


.kb-card-preview {
  font-family: var(--helion-font);
  font-size: 14px;          
  color: #495057;
  margin: 6px 0 8px;
  line-height: 1.45;
}


/* .kb-card-meta entfernt */

.kb-pagination ul {
  list-style:none;
  display:flex;
  gap:.75rem;
  padding:0;
  font-family: var(--helion-font);
}

.kb-pagination .disabled {
  opacity:.5;
}


/* Global Font Override */
*,
*::before,
*::after {
    font-family: "Proxima Nova", Arial, sans-serif !important;
}
.kb-article-content,
.kb-article-content p,
.kb-article-content div {
  font-family: var(--helion-font) !important;
  font-size: 16px;
}

.kb-article-content h1,
.kb-article-content h2,
.kb-article-content h3 {
  font-family: var(--helion-font) !important; 
}



/* Ende der Datei */
