.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 920px) {
  .kl-navbar__parent > a {
    pointer-events: none;
  }
  .kl-navbar__parent--active > a {
    pointer-events: auto;
  }
}

.text_headline h1 {
  font-size: 72px;
  line-height: 1.2;
  color: #ffffff
}

@media (max-width: 767px) {
  .text_headline h1 {
    font-size: clamp(28px, 9vw, 48px);
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: break-word;
  }
}


h1 {
  border-left: 12px solid #b80e31;
 /* margin-top: 2em;*/
  padding-left: 16px;
  display: inline-block;
  line-height: 1.2;
}




.blog-post__body-wrapper {
  overflow: visible;
}

.blog-post__body {
  overflow: visible;
}

.blog-post__two-col {
  display: flex !important;
  gap: 2rem;
  align-items: flex-start;
}

.blog-post__toc-column {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 102px; /* 82px header + 20px breathing room */
  max-height: calc(100vh - 122px); /* viewport minus header and some padding */
  overflow-y: auto;
}

.blog-post__content-column {
  flex: 1;
  min-width: 0;
}

@media (max-width: 767px) {
  .blog-post__two-col {
    flex-direction: column;
  }
  .blog-post__toc-column {
    width: 100%;
    position: static;
  }
}

html {
  scroll-behavior: smooth;
}

}

.blog-post table {
  width: 100%;
  border-collapse: collapse !important;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 13.5px;
  background: #ffffff;
  margin: 32px 0;
  box-shadow: 0 0 0 1px #e2e8f0;
  border-radius: 12px;
}
 
/* ── RESET INHERITED STYLES ──────────────────────────── */
.blog-post table,
.blog-post table thead,
.blog-post table tbody,
.blog-post table tr,
.blog-post table th,
.blog-post table td {
  border: none !important;
  outline: none !important;
}
 
/* ── HEADER ──────────────────────────────────────────── */
.blog-post table thead tr {
  background: #0A2558 !important;
}
.blog-post table thead th {
  padding: 12px 16px !important;
  text-align: left !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important;
  white-space: nowrap !important;
  border: none !important;
}
 
/* ── ROUNDED CORNERS (no wrapper needed) ──────────────── */
.blog-post table thead tr:first-child th:first-child {
  border-top-left-radius: 12px !important;
}
.blog-post table thead tr:first-child th:last-child {
  border-top-right-radius: 12px !important;
}
.blog-post table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px !important;
}
.blog-post table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px !important;
}
 
/* ── BODY ROWS ───────────────────────────────────────── */
.blog-post table tbody tr {
  border-bottom: 1px solid #f0f3f7 !important;
  transition: background 0.15s ease;
}
.blog-post table tbody tr:hover {
  background: #f7f9fc !important;
}
.blog-post table tbody tr:last-child {
  border-bottom: none !important;
}
.blog-post table tbody td {
  padding: 12px 16px !important;
  color: #1a1a1a !important;
  border: none !important;
  background: transparent !important;
  vertical-align: middle !important;
}
 
/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 767px) {
  .blog-post table {
    display: block;
    overflow-x: auto;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
  }
  .blog-post table thead th,
  .blog-post table tbody td {
    padding: 10px 12px !important;
  }
}