/* Kennisbank Wrapper */
.h-kb { 
    width: 100%; 
    max-width: 1100px; 
    margin: 0 auto; 
    font-family: Arial, sans-serif; 
}

/* Verkleinde koppen binnen de Kennisbank */
.h-kb h1, .h-main-title {
    font-size: 1.5rem !important; 
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    line-height: 1.2;
    color: #2c76b2;
}

.h-kb h2 {
    font-size: 1.3rem !important;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c76b2;
}

.h-kb h3 {
    font-size: 1.15rem !important;
    color: #2c76b2;
}

.h-kb h4 {
    font-size: 1rem !important;
    font-weight: bold;
}

/* Navigatie / Breadcrumbs met Icoontjes */
.h-nav { 
    display: flex; 
    align-items: center; 
    margin-bottom: 30px; 
    font-size: 15px; 
    line-height: 1.4;
}

.h-nav a { 
    color: #2c76b2 !important; 
    text-decoration: none !important; 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
}

.h-nav a:hover {
    text-decoration: underline !important;
}

.h-nav-sep { 
    color: #999; 
    margin: 0 12px; /* Extra spaties rondom de » */
    font-weight: normal;
}

/* Icoon styling (voor Dashicons) */
.h-nav .dashicons { 
    font-size: 18px; 
    width: 18px; 
    height: 18px; 
    margin-right: 6px; 
    line-height: 1;
    display: inline-block;
}

/* Responsive Grid */
.h-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.h-grid-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px 15px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .h-grid-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .h-nav {
        flex-wrap: wrap;
    }
}

/* Categorie Headers op Dashboard */
.h-cat-header { 
    display: flex; 
    align-items: center; 
    margin-bottom: 12px; 
    text-decoration: none !important; 
    color: #2c76b2 !important;
}

.h-cat-header .dashicons {
    font-size: 22px;
    margin-right: 10px;
    color: #2c76b2;
}

.h-cat-title { 
    font-weight: bold; 
    font-size: 19px; 
}

/* Artikellijsten */
.h-list { 
    list-style: none !important; 
    margin: 0 !important; 
    padding: 0 !important; 
}

.h-list li { 
    margin: 0 0 8px 0 !important; 
    padding: 0 0 0 18px !important; 
    position: relative !important; 
    font-size: 14px; 
    line-height: 1.4; 
}

.h-list li:before { 
    content: '•'; 
    position: absolute; 
    left: 0; 
    color: #2c76b2; 
    font-weight: bold; 
}

.h-list a {
    text-decoration: none;
    color: #444;
}

.h-list a:hover {
    color: #2c76b2;
}

/* Intro & Content */
.h-main-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.h-content { 
    line-height: 1.8; 
    color: #333; 
}
/* Footer Styling */
.h-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 10px; /* Nog iets kleiner */
    color: #bbb; /* Iets lichtere kleur voor een subtiele look */
    text-align: center; /* Gecentreerd */
    font-style: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Optioneel: maakt het wat strakker */
}

.h-footer-sep {
    margin: 0 15px;
    color: #ddd;
}














.kennisbank-back-link {
    display: inline-block;               /* zorgt dat padding en hover goed werken */
    padding: 12px 30px;                  /* verticale en horizontale ruimte */
    background: linear-gradient(90deg, #E21F26, #077CC1); /* kleurverloop */
    color: #ffffff;                      /* witte tekst */
    font-weight: 700;                     /* dikgedrukt */
    text-decoration: none;                /* geen onderstreping */
    border-radius: 25px;                  /* ronde hoeken */
    transition: transform 0.25s ease, box-shadow 0.25s ease; /* subtiel hover effect */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
}

.kennisbank-back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    color: #FFFF00;
}

.kennisbankbox-thumbs-bottom ul {
    height: 100px!important;
}