/*knowledge base*/
.packages-span{
  display: flex !important;
  gap: 5px;
}
.kb-hero{
  background: linear-gradient(135deg,#4f46e5,#3b2bbf);
  padding:140px 20px 110px;
  text-align:center;
  color:white;
  margin-top:15px;
}

.kb-hero-inner{
  max-width:900px;
  margin:auto;
}

.kb-hero h1{
  font-size:48px;
  font-weight:800;
  margin-bottom:10px;
}

.kb-hero p{
  opacity:.9;
  margin-bottom:40px;
}

.kb-search-box{
  position:relative;
  max-width:800px;
  margin:30px auto 0;
  background:white;
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  z-index:50;
}
.kb-search-box input{
  width:100%;
  border:none;
  outline:none;
  font-size:18px;
  margin-bottom: 0px;
}

.kb-search-box i{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  color:#999;
}

.kb-search-result:hover{
  background:#f5f7ff;
}
.kb-search-result:hover .kb-search-arrow{
  transform: translateX(6px);
}

.kb-section{
  padding:80px 20px;
}

.kb-container{
  max-width:1200px;
  margin:auto;
}

.kb-section-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:30px;
}

.kb-category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.kb-category-card{
  background:white;
  border-radius:18px;
  padding:35px 30px;
  text-align:center;
  text-decoration:none;
  color:#111;
  box-shadow:0 8px 30px rgba(0,0,0,.05);
  transition:.25s;
}

.kb-category-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.kb-cat-icon{
  width:90px;
  height:90px;
  object-fit:contain;
  margin-bottom:18px;
}
.kb-category-card h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}
.kb-category-card p{
  font-size:14px;
  opacity:.7;
  line-height:1.5;
}
.kb-breadcrumb{
  margin-bottom:20px;
  font-size:14px;
  opacity:.7;
}

.kb-breadcrumb a{
  text-decoration:none;
  color:#4f46e5;
}
.kb-breadcrumb-current{
  opacity:.7;
}

.kb-page-title{
  font-size:40px;
  font-weight:800;
  margin-bottom:30px;
}

.kb-article-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.kb-article-card{
  background:white;
  padding:18px 22px;
  border-radius:12px;
  text-decoration:none;
  color:#111;
  box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.kb-article-card:hover{
  background:#f5f7ff;
}
.kb-article-wrapper{
  padding:80px 20px;
}

.kb-article-container{
  max-width:850px;
  margin:auto;
}

.kb-article-title{
  font-size:44px;
  font-weight:800;
  margin-bottom:25px;
}

.kb-featured-image{
  width:100%;
  border-radius:16px;
  margin-bottom:25px;
}

.kb-badge{
  background:#eef2ff;
  color:#4f46e5;
  padding:6px 12px;
  border-radius:8px;
  font-size:12px;
  font-weight:600;
  margin-right:6px;
  border: 1px solid;
}

.kb-article-content{
  line-height:1.8;
  font-size:16px;
}

.kb-search-results{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:white;
  color:#111;
  border-radius:14px;
  margin-top:10px;
  box-shadow:0 10px 40px rgba(0,0,0,.1);
  overflow:hidden;
  z-index:9999;
}
.kb-search-loading{
  padding:25px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.kb-search-result{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  text-decoration:none;
  color:#111;
  border-bottom:1px solid #f1f1f1;
}
.kb-search-result-left{
  flex:1;
  text-align: left;
}
.kb-search-title{
  font-weight:600;
  margin-bottom:4px;
}
.kb-search-snippet{
  font-size:12px;
  opacity:.6;
  width: 430px;
}
.kb-search-arrow{
  font-size:20px;
  opacity:.4;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.kb-search-arrow i{
  right: 0px;
}

.kb-search-result:hover{
  background:#f5f7ff;
}

.kb-no-results{
  padding:18px;
  text-align:center;
  opacity:.6;
  color: black;
}

@media (max-width:1100px){
  .kb-category-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  .kb-category-grid{
    grid-template-columns:1fr;
  }
}


/* =========================
   TOP NAV
========================= */

.kb-topnav{
  all: unset;
  display:block;
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  z-index:1000 !important;
  background:linear-gradient(135deg,#4f46e5,#3b2bbf) !important;
  margin-left: 0px;
}

.kb-nav-inner{
  max-width:1400px;
  margin:auto;
  padding:21px 0px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.kb-logo-svg{
  height:28px;
  width:auto;
  display:block;
}
.kb-logo:hover{
  opacity:.85;
}

/* LINKS */
.kb-nav-links{
  display:flex;
  gap:32px;
}
.kb-nav-links a{
  color:white;
  text-decoration:none;
  font-weight:500;
  opacity:.9;
}
.kb-nav-links a:hover{
  opacity:1;
}

/* CTA */
.kb-nav-cta{
  display:flex;
  gap:12px;
}
.kb-btn{
  padding:10px 18px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  font-size:14px;
}

/* primary button */
.kb-btn-primary{
  background:var(--primary);
  color:white;
  font-size: 18px;
}

/* outline button */
.kb-btn-outline{
  background-color: #0003;
  font-size: 18px;
  color:white;
}

@media (max-width:900px){
  .kb-nav-links{
    display:none;
  }
}

/* artikels als grid zoals categorieën */
.kb-article-grid{
  margin-top:10px;
}

/* ===============================
   ARTICLE FULL WIDTH LIST
=================================*/

.kb-article-list-full{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:10px;
}
.kb-article-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 26px;
  background:white;
  border-radius:14px;
  text-decoration:none;
  color:#111;
  box-shadow:0 6px 20px rgba(0,0,0,.05);
  transition:all .18s ease;
}
.kb-article-row:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.kb-article-row-content{
  flex:1;
  padding-right:20px;
}
.kb-article-row-title{
  font-size:18px;
  font-weight:500;
  margin-bottom:4px;
}
.kb-article-row-excerpt{
  font-size:14px;
  opacity:.65;
}
.kb-article-row-arrow{
  font-size:22px;
  color:#4f46e5;
  transition:transform .15s ease;
}
.kb-article-row:hover .kb-article-row-arrow{
  transform:translateX(4px);
}


/* SMALL HERO (artikel pagina) */
.kb-hero-small{
  padding:90px 20px 70px;
}

.kb-hero-small h1{
  font-size:32px;
  margin-bottom:20px;
}

/* kleinere zoekbox */
.kb-search-box-small{
  max-width:500px;
  padding:14px 18px;
}

.kb-search-box-small input{
  font-size:16px;
}
.kb-packages{
  margin:15px 0 25px;
}


.kb-footer{
  background:linear-gradient(135deg,#4f46e5,#3b2bbf);
  color:white;
  padding:40px;
  margin-top:120px;
}

.kb-footer-inner{
  max-width:1400px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  flex-wrap:wrap;
}

.kb-footer-logo{
  width:80px;
  margin-bottom:20px;
}

.kb-footer-logo svg{
  width:100%;
}

.kb-footer-copy{
  font-size:14px;
  opacity:.9;
}

.kb-footer-right{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

.kb-footer-right a{
  color:white;
  font-size:14px;
  font-weight:600;
  text-decoration:underline;
}

.kb-footer-right a:hover{
  text-decoration:none;
}

/*ARTICLE CONTENT*/
.kb-article-content a{
  color: #0071f2;
  width: 100%;
  cursor: pointer;
  text-decoration: underline;
}
.kb-article-content li{
  font-size: 16px;
  line-height: 1.4;
}
.kb-article-content img{
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-m);
}
.kb-article-content video{
  border-radius: var(--radius-m);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}


/* =====================================
   MOBILE GLOBAL
===================================== */

@media (max-width:768px){

  body{
    font-size:15px;
  }

  .kb-container{
    padding:0 18px;
  }

}


/* =====================================
   HERO MOBILE
===================================== */

@media (max-width:768px){

  .kb-hero{
    padding:100px 18px 60px;
    margin-top:0;
  }

  .kb-hero h1{
    font-size:28px;
    line-height:1.2;
  }

  .kb-hero p{
    font-size:14px;
    margin-bottom:25px;
  }

}


/* =====================================
   SEARCH BOX MOBILE
===================================== */

@media (max-width:768px){

  .kb-search-box{
    padding:14px 16px;
    border-radius:12px;
  }

  .kb-search-box input{
    font-size:16px;
  }

  .kb-search-results{
    border-radius:12px;
  }

  .kb-search-result{
    padding:14px 16px;
  }

  .kb-search-snippet{
    width:300px;
    font-size:12px;
  }

}


/* =====================================
   SMALL HERO (article page)
===================================== */

@media (max-width:768px){

  .kb-hero-small{
    padding:80px 18px 50px;
  }

  .kb-hero-small h1{
    font-size:24px;
  }

  .kb-search-box-small{
    max-width:100%;
  }

}


/* =====================================
   CATEGORY GRID MOBILE
===================================== */

@media (max-width:768px){

  .kb-category-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .kb-category-card{
    padding:24px 20px;
  }

  .kb-cat-icon{
    width:60px;
    height:60px;
  }

}


/* =====================================
   ARTICLE LIST MOBILE
===================================== */

@media (max-width:768px){

  .kb-article-row{
    padding:18px 18px;
    border-radius:12px;
  }

  .kb-article-row-title{
    font-size:17px;
  }

  .kb-article-row-excerpt{
    font-size:13px;
  }

}


/* =====================================
   ARTICLE PAGE MOBILE
===================================== */

@media (max-width:768px){

  .kb-article-wrapper{
    padding:50px 18px;
  }

  .kb-article-title{
    font-size:28px;
    line-height:1.2;
  }

  .kb-featured-image{
    border-radius:12px;
  }

  .kb-article-content{
    font-size:15px;
    line-height:1.7;
  }

}


/* =====================================
   BREADCRUMB MOBILE
===================================== */

@media (max-width:768px){

  .kb-breadcrumb{
    font-size:13px;
    margin-bottom:14px;
  }

}


/* =====================================
   TOP NAV MOBILE
===================================== */

@media (max-width:768px){

  .kb-nav-inner{
    padding:16px 18px;
  }

  .kb-logo-svg{
    height:22px;
  }

  .kb-btn{
    padding:8px 12px;
    font-size:14px;
  }

}


/* =====================================
   FOOTER MOBILE
===================================== */

@media (max-width:768px){

  .kb-footer{
    padding:30px 20px;
    margin-top:60px;
  }

  .kb-footer-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .kb-footer-right{
    gap:18px;
    flex-direction:column;
  }

}


/* =====================================
   PACKAGE BADGES MOBILE
===================================== */

@media (max-width:768px){

  .kb-badge{
    font-size:11px;
    padding:5px 9px;
  }

}

/* =========================
   RESPONSIVE VIDEO
========================= */

.kb-article-content video{
  width:100%;
  height:auto;
  max-width:100%;
  border-radius: var(--radius-m);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

@media (max-width:768px){

  .kb-article-content video{
    width:100%;
    height:auto;
    max-width:100%;
    border-radius:12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }

}