/* ==================== KNOWLEDGE BASE / RESOURCE CENTER ==================== */

/* ── Container ── */
.kb-container { padding: 0; height: 100%; overflow-y: auto; }
.kb-loading { text-align: center; padding: 80px 20px; color: #6b7280; font-size: 15px; }
.kb-loading i { color: #1E6332; margin-right: 8px; }

/* ── Hero Search ── */
.kb-hero {
    background: linear-gradient(135deg, #1E6332 0%, #214A3E 50%, #2F8542 100%);
    padding: 48px 32px 58px;
    text-align: center;
    position: relative;
}
.kb-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.kb-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.kb-hero-title {
    font-family: 'Futura PT', 'Jost', sans-serif;
    font-size: 28px; font-weight: 700; color: #fff; margin: 0 0 8px;
}
.kb-hero-subtitle { color: rgba(255,255,255,0.75); font-size: 15px; margin: 0 0 24px; line-height: 1.5; }

/* ── Search Bar ── */
.kb-search-wrap {
    position: relative; display: flex; align-items: center; z-index: 50;
}
.kb-search-wrap-hero {
    max-width: 560px; margin: 0 auto;
}
.kb-search-icon {
    position: absolute; left: 16px; color: #9ca3af; font-size: 15px; pointer-events: none; z-index: 1;
}
.kb-search-input {
    width: 100%; padding: 14px 16px 14px 44px;
    border: 2px solid transparent; border-radius: 12px;
    font-size: 15px; font-family: 'Futura PT', 'Jost', sans-serif;
    background: #fff; color: #231F20;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.kb-search-input:focus {
    border-color: #1E6332;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12), 0 0 0 3px rgba(30,99,50,0.15);
}
.kb-search-input::placeholder { color: #aaa; }
.kb-search-wrap-sm { max-width: 320px; }
.kb-search-wrap-sm .kb-search-input,
.kb-search-wrap-sm .kb-local-input { padding: 10px 14px 10px 38px; font-size: 14px; border: 1.5px solid #e5e1da; box-shadow: none; border-radius: 10px; font-family: 'Futura PT', 'Jost', sans-serif; color: #231F20; outline: none; width: 100%; }
.kb-search-wrap-sm .kb-search-input:focus,
.kb-search-wrap-sm .kb-local-input:focus { border-color: #1E6332; box-shadow: 0 0 0 3px rgba(30,99,50,0.1); }
.kb-search-wrap-sm .kb-local-input::placeholder { color: #aaa; }
.kb-search-wrap-lg { max-width: 600px; }

/* ── Live Search Dropdown ── */
.kb-live-search {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 100;
    margin-top: 6px; background: #fff; border: 1px solid #e5e1da;
    border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    max-height: 420px; overflow-y: auto; overflow-x: hidden;
    animation: kbLsIn 0.15s ease;
}
@keyframes kbLsIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.kb-ls-category { padding: 0; }
.kb-ls-category + .kb-ls-category { border-top: 1px solid #f0ede8; }
.kb-ls-cat-header {
    padding: 10px 16px 6px; font-size: 11px; font-weight: 700; color: #9ca3af;
    text-transform: uppercase; letter-spacing: 0.4px;
    font-family: 'Futura PT', 'Jost', sans-serif;
}
.kb-ls-cat-header i { margin-right: 5px; font-size: 12px; }
.kb-ls-cat-count { font-weight: 500; opacity: 0.6; margin-left: 4px; }
.kb-ls-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 16px; cursor: pointer; transition: background 0.1s;
}
.kb-ls-item:hover { background: #F4F0E9; }
.kb-ls-item-icon { font-size: 14px; width: 20px; text-align: center; flex-shrink: 0; }
.kb-ls-item-info { flex: 1; min-width: 0; }
.kb-ls-item-title { font-size: 14px; font-weight: 500; color: #231F20; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kb-ls-item-meta { font-size: 11px; color: #9ca3af; margin-top: 1px; }
.kb-ls-highlight { background: #fef08a; color: #231F20; padding: 0 1px; border-radius: 2px; }
.kb-ls-more {
    padding: 6px 16px 10px; font-size: 12px; color: #1E6332;
    cursor: pointer; font-weight: 500;
}
.kb-ls-more:hover { text-decoration: underline; }
.kb-ls-footer {
    padding: 10px 16px; text-align: center; font-size: 13px; font-weight: 600;
    color: #1E6332; cursor: pointer; border-top: 1px solid #f0ede8;
    transition: background 0.1s;
}
.kb-ls-footer:hover { background: #F4F0E9; }
.kb-ls-footer i { margin-right: 6px; }
.kb-ls-empty {
    padding: 24px 16px; text-align: center; color: #9ca3af; font-size: 14px;
}
.kb-ls-empty i { margin-right: 6px; }
.kb-search-wrap-lg .kb-search-input { border: 1.5px solid #e5e1da; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

/* ── Featured Articles ── */
.kb-featured-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin: -28px 24px 24px;
}
.kb-featured {
    display: flex; align-items: center; gap: 0;
    padding: 0;
    background: #fff; border: 1px solid #e5e1da; border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    cursor: pointer; transition: all 0.2s ease; position: relative; overflow: hidden;
}
.kb-featured:hover { border-color: #1E6332; box-shadow: 0 6px 24px rgba(30,99,50,0.1); transform: translateY(-1px); }
.kb-featured-left {
    width: 6px; flex-shrink: 0; align-self: stretch;
    background: linear-gradient(180deg, #C19A6B 0%, #a07d52 100%);
    border-radius: 14px 0 0 14px;
}
.kb-featured-icon { display: none; }
.kb-featured-body { flex: 1; padding: 20px 24px; }
.kb-featured-label {
    font-family: 'Futura PT', 'Jost', sans-serif;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.8px; color: #C19A6B; margin-bottom: 4px;
}
.kb-featured-title { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 20px; font-weight: 700; color: #231F20; margin: 0 0 8px; }
.kb-featured-summary { color: #6b7280; font-size: 14px; margin: 0 0 12px; line-height: 1.5; }
.kb-featured-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: #9ca3af; align-items: center; }
.kb-featured-meta i { margin-right: 4px; }
.kb-featured-arrow {
    width: 44px; height: 44px; border-radius: 50%; background: #F4F0E9;
    display: flex; align-items: center; justify-content: center;
    color: #1E6332; font-size: 16px; flex-shrink: 0; transition: all 0.2s;
    margin-right: 20px;
}
.kb-featured:hover .kb-featured-arrow { background: #1E6332; color: #fff; transform: translateX(4px); }

/* ── Sections ── */
.kb-section { padding: 0 24px; margin-bottom: 28px; }
.kb-section-title {
    font-family: 'Futura PT', 'Jost', sans-serif;
    font-size: 17px; font-weight: 600; color: #231F20; margin: 0 0 16px;
    display: flex; align-items: center; gap: 8px;
}
.kb-section-title i { color: #1E6332; font-size: 15px; }

/* ── Category Grid ── */
.kb-categories-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.kb-category-card {
    display: flex; flex-direction: column;
    padding: 22px 24px; background: #fff; border: 1px solid #e5e1da;
    border-radius: 12px; cursor: pointer; transition: all 0.2s ease;
}
.kb-category-card:hover {
    border-color: #1E6332; box-shadow: 0 6px 20px rgba(30,99,50,0.08);
    transform: translateY(-2px);
}
.kb-category-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.kb-category-header-text { flex: 1; }
.kb-category-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.kb-category-name { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 16px; font-weight: 600; color: #231F20; margin: 0; }
.kb-category-count { font-size: 12px; color: #9ca3af; }
.kb-category-desc { font-size: 13px; color: #6b7280; margin: 0 0 12px; line-height: 1.5; }
.kb-category-articles {
    list-style: none; margin: 0 0 12px; padding: 0;
    border-top: 1px solid #f0ede8; padding-top: 10px;
}
.kb-category-articles li {
    padding: 5px 0; font-size: 13px; color: #374151;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kb-category-articles li i { margin-right: 6px; font-size: 11px; }
.kb-category-footer { margin-top: auto; }
.kb-category-explore {
    font-size: 13px; font-weight: 600; color: #1E6332;
    display: inline-flex; align-items: center; gap: 6px;
}
.kb-category-explore i { font-size: 11px; transition: transform 0.2s; }
.kb-category-card:hover .kb-category-explore i { transform: translateX(4px); }

/* ── Home Layout (categories left + sidebar right) ── */
.kb-home-layout {
    display: grid; grid-template-columns: 1fr 280px; gap: 24px;
    padding: 0 24px; margin-bottom: 24px; align-items: flex-start;
}
.kb-home-main { min-width: 0; }
.kb-home-main .kb-section { padding: 0; }
.kb-home-sidebar {
    display: flex; flex-direction: column; gap: 20px;
    position: sticky; top: 16px;
}
.kb-sidebar-section {
    background: #fff; border: 1px solid #e5e1da; border-radius: 12px;
    padding: 16px;
}
.kb-sidebar-title {
    font-family: 'Futura PT', 'Jost', sans-serif;
    font-size: 14px; font-weight: 600; color: #231F20;
    margin: 0 0 10px; display: flex; align-items: center; gap: 7px;
}
.kb-sidebar-title i { color: #1E6332; font-size: 13px; }
.kb-sidebar-section .kb-list-item { padding: 8px 10px; }
.kb-sidebar-section .kb-list-item-title { font-size: 13px; }
.kb-sidebar-section .kb-list-item-meta { font-size: 11px; }
.kb-sidebar-section .kb-list-item-rank { width: 24px; height: 24px; font-size: 11px; border-radius: 6px; }
.kb-sidebar-section .kb-list-item-icon { font-size: 14px; width: 24px; }
.kb-sidebar-section .kb-empty-state-sm { padding: 20px 8px; }
.kb-sidebar-section .kb-empty-state-sm i { font-size: 20px; }
.kb-sidebar-section .kb-empty-state-sm p { font-size: 12px; }

/* ── Compact List ── */
.kb-list-compact { display: flex; flex-direction: column; gap: 2px; }
.kb-list-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: 10px; cursor: pointer;
    transition: background 0.15s;
}
.kb-list-item:hover { background: #F4F0E9; }
.kb-list-item-icon { font-size: 16px; width: 28px; text-align: center; flex-shrink: 0; }
.kb-list-item-rank {
    width: 28px; height: 28px; border-radius: 8px;
    background: #F4F0E9; color: #C19A6B; font-weight: 700; font-size: 13px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kb-list-item-info { flex: 1; min-width: 0; }
.kb-list-item-title { font-size: 14px; font-weight: 500; color: #231F20; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kb-list-item-meta { font-size: 12px; color: #9ca3af; margin-top: 2px; }
.kb-list-item-meta i { margin-right: 3px; }

/* ── Empty State ── */
.kb-empty-state { text-align: center; padding: 60px 20px; color: #9ca3af; }
.kb-empty-state i { font-size: 36px; margin-bottom: 12px; display: block; color: #d5d0c8; }
.kb-empty-state p { margin: 0 0 6px; font-size: 15px; }
.kb-empty-hint { font-size: 13px; color: #b0ada8; }
.kb-empty-state-sm { text-align: center; padding: 32px 16px; color: #b0ada8; }
.kb-empty-state-sm i { font-size: 24px; margin-bottom: 8px; display: block; color: #d5d0c8; }
.kb-empty-state-sm p { margin: 0; font-size: 13px; }

/* ── Type Chip ── */
.kb-type-chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 600;
    border: 1px solid; text-transform: uppercase; letter-spacing: 0.3px;
}
.kb-type-chip i { font-size: 10px; }
.kb-type-chip-sm { font-size: 10px; padding: 2px 7px; }

/* ── Category Badge (shared component) ── */
.kb-cat-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 600;
    border: 1px solid; white-space: nowrap;
}
.kb-cat-badge i { font-size: 10px; }
.kb-card-badges { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }

/* ── Tags ── */
.kb-tag {
    display: inline-block; padding: 2px 8px; border-radius: 5px;
    background: #F4F0E9; color: #8a8580; font-size: 11px; font-weight: 500;
}

/* ── Breadcrumb ── */
.kb-breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    padding: 14px 24px; font-size: 13px; color: #9ca3af;
    border-bottom: 1px solid #eee;
}
.kb-back-btn {
    width: 30px; height: 30px; border-radius: 8px; border: 1px solid #e5e1da;
    background: #fff; color: #6b7280; cursor: pointer; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s; margin-right: 4px; flex-shrink: 0;
}
.kb-back-btn:hover { border-color: #1E6332; color: #1E6332; background: #1E633208; }
.kb-bc-link { color: #1E6332; cursor: pointer; text-decoration: none; font-weight: 500; }
.kb-bc-link:hover { text-decoration: underline; }
.kb-bc-sep { font-size: 9px; color: #ccc; }
.kb-bc-current { color: #6b7280; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 300px; }

/* ── Category View Header ── */
.kb-cat-header {
    display: flex; align-items: center; gap: 18px;
    padding: 24px 28px; margin: 0;
    background: linear-gradient(135deg, #1E6332 0%, #214A3E 60%, #2F8542 100%);
    border-bottom: none; border-left: none;
}
.kb-cat-header-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
    background: rgba(255,255,255,0.15) !important; color: #fff !important;
}
.kb-cat-header-title { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.kb-cat-header-desc { font-size: 14px; color: rgba(255,255,255,0.8); margin: 0 0 6px; line-height: 1.4; }
.kb-cat-article-count { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ── Filter Bar ── */
.kb-filter-bar {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    padding: 12px 24px; border-bottom: 1px solid #eee; background: #fafaf8;
}
.kb-filter-left { }
.kb-filter-right { display: flex; align-items: center; gap: 8px; }
.kb-sort-btns { display: flex; gap: 4px; }
.kb-sort-btn {
    padding: 6px 12px; border: 1px solid #e5e1da; border-radius: 8px;
    background: #fff; color: #6b7280; font-size: 12px; font-weight: 500;
    cursor: pointer; transition: all 0.15s; font-family: 'Futura PT', 'Jost', sans-serif;
}
.kb-sort-btn:hover { border-color: #1E6332; color: #1E6332; }
.kb-sort-btn i { margin-right: 4px; }
.kb-sort-active { background: #1E6332; color: #fff; border-color: #1E6332; }
.kb-sort-active:hover { background: #214A3E; color: #fff; }

/* ── Article Cards (Grid) ── */
.kb-article-list {
    padding: 16px 24px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.kb-article-card {
    display: flex; flex-direction: column; gap: 0;
    padding: 20px; background: #fff; border: 1px solid #e5e1da;
    border-radius: 12px; cursor: pointer; transition: all 0.2s ease;
}
.kb-article-card:hover { border-color: #1E6332; box-shadow: 0 6px 20px rgba(30,99,50,0.08); transform: translateY(-3px); }
.kb-card-left { flex: 1; min-width: 0; }
.kb-card-title { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 15px; font-weight: 600; color: #231F20; margin: 8px 0 8px; line-height: 1.3; }
.kb-card-summary { font-size: 13px; color: #6b7280; margin: 0 0 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.kb-card-meta {
    display: flex; flex-wrap: wrap; gap: 10px; font-size: 11px; color: #9ca3af; align-items: center;
    padding-top: 12px; border-top: 1px solid #f0ede8; margin-top: auto;
}
.kb-card-meta i { margin-right: 3px; }
.kb-card-tags { display: inline-flex; gap: 4px; margin-left: 0; }
.kb-card-arrow { display: none; }

/* ── Article View ── */
.kb-article-layout {
    display: grid; grid-template-columns: 1fr 300px; gap: 20px;
    padding: 20px 24px 40px; align-items: flex-start;
}
.kb-article-main { min-width: 0; }
.kb-article-card-wrap {
    background: #fff; border: 1px solid #e5e1da; border-radius: 14px;
    padding: 28px 32px 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.kb-article-sidebar {
    display: flex; flex-direction: column; gap: 16px;
    position: sticky; top: 16px;
}
.kb-article-sidebar .kb-sidebar-section { padding: 14px; }
.kb-article-sidebar .kb-related-card { margin-bottom: 8px; padding: 10px 12px; }
.kb-article-sidebar .kb-related-title { font-size: 13px; margin: 6px 0 4px; }
.kb-article-sidebar .kb-related-meta { font-size: 11px; }
.kb-article-sidebar .kb-comment-form { gap: 8px; }
.kb-article-sidebar .kb-comment-avatar { width: 28px; height: 28px; font-size: 11px; }
.kb-article-sidebar .kb-comment-textarea { padding: 8px 38px 8px 10px; font-size: 13px; min-height: 38px; }
.kb-article-sidebar .kb-comment-submit {
    padding: 0 !important; width: 28px; height: 28px; min-width: 0;
    font-size: 12px !important; right: 5px; top: 50%; transform: translateY(-50%); bottom: auto;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.kb-article-sidebar .kb-comment { padding: 10px 0; }
.kb-article-sidebar .kb-comment-pinned { padding: 10px 10px; margin: 0 -10px; }
.kb-article-sidebar .kb-comment-author { font-size: 12px; }
.kb-article-sidebar .kb-comment-text { font-size: 13px; line-height: 1.4; }
.kb-article-sidebar .kb-comment-time { font-size: 11px; }
.kb-article-sidebar .kb-role-badge { font-size: 9px; padding: 1px 5px; }
.kb-article-sidebar .kb-pinned-badge { font-size: 10px; }
.kb-article-sidebar .kb-comments-count { font-size: 11px; padding: 1px 6px; }

/* Article Header */
.kb-article-header { margin-bottom: 24px; }
.kb-article-title { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 28px; font-weight: 700; color: #231F20; margin: 10px 0 14px; line-height: 1.3; }
.kb-article-meta-bar { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #9ca3af; margin-bottom: 10px; }
.kb-article-meta-bar i { margin-right: 4px; }
.kb-article-tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* Video Embed */
.kb-video-embed {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border-radius: 12px; margin-bottom: 24px; background: #000;
}
.kb-video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Article Body */
.kb-article-body {
    font-size: 15px; line-height: 1.75; color: #374151;
}
.kb-article-body h2 {
    font-family: 'Futura PT', 'Jost', sans-serif;
    font-size: 20px; font-weight: 700; color: #231F20;
    margin: 32px 0 12px; padding-top: 16px;
    border-top: 1px solid #eee;
}
.kb-article-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.kb-article-body h3 {
    font-family: 'Futura PT', 'Jost', sans-serif;
    font-size: 16px; font-weight: 600; color: #374151;
    margin: 20px 0 8px;
}
.kb-article-body p { margin: 0 0 14px; }
.kb-article-body ul, .kb-article-body ol { margin: 0 0 14px; padding-left: 24px; }
.kb-article-body li { margin-bottom: 6px; }
.kb-article-body strong { color: #231F20; }

/* FAQ Items */
.kb-faq-item {
    border: 1px solid #e5e1da; border-radius: 10px;
    margin-bottom: 10px; overflow: hidden;
}
.kb-faq-item h3 {
    margin: 0; padding: 14px 18px;
    background: #fafaf8; font-size: 15px; font-weight: 600; color: #231F20;
    border-bottom: 1px solid #e5e1da; cursor: default;
}
.kb-faq-item p { padding: 14px 18px; margin: 0; font-size: 14px; }


/* ── Attachments ── */
.kb-attachments { margin: 28px 0; padding: 20px; background: #fafaf8; border: 1px solid #e5e1da; border-radius: 12px; }
.kb-attachments h3 { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 15px; color: #231F20; margin: 0 0 14px; }
.kb-attachments h3 i { color: #1E6332; margin-right: 6px; }
.kb-att-grid { display: flex; flex-direction: column; gap: 8px; }
.kb-att-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; background: #fff; border: 1px solid #e5e1da;
    border-radius: 8px; transition: border-color 0.15s;
}
.kb-att-item:hover { border-color: #1E6332; }
.kb-att-info { flex: 1; min-width: 0; }
.kb-att-name { display: block; font-size: 13px; font-weight: 500; color: #231F20; }
.kb-att-size { font-size: 11px; color: #9ca3af; }
.kb-att-download {
    width: 32px; height: 32px; border-radius: 8px; border: 1px solid #e5e1da;
    background: #fff; color: #1E6332; cursor: pointer; transition: all 0.15s;
    display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.kb-att-download:hover { background: #1E6332; color: #fff; border-color: #1E6332; }

/* ── Feedback ── */
.kb-feedback {
    margin: 28px 0; padding: 24px; text-align: center;
    background: #fafaf8; border: 1px solid #e5e1da; border-radius: 12px;
}
.kb-feedback-question {
    font-family: 'Futura PT', 'Jost', sans-serif;
    font-size: 16px; font-weight: 600; color: #231F20; margin-bottom: 14px;
}
.kb-feedback-btns { display: flex; gap: 12px; justify-content: center; }
.kb-feedback-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 28px; border-radius: 10px; font-size: 14px; font-weight: 600;
    border: 1.5px solid; cursor: pointer; transition: all 0.2s;
    font-family: 'Futura PT', 'Jost', sans-serif;
}
.kb-feedback-yes {
    color: #1E6332; border-color: #1E6332; background: #fff;
}
.kb-feedback-yes:hover { background: #1E6332; color: #fff; transform: translateY(-1px); box-shadow: 0 3px 10px rgba(30,99,50,0.2); }
.kb-feedback-no {
    color: #9ca3af; border-color: #d5d0c8; background: #fff;
}
.kb-feedback-no:hover { border-color: #dc2626; color: #dc2626; }
.kb-feedback-yes.kb-feedback-selected { background: #1E6332; color: #fff; border-color: #1E6332; }
.kb-feedback-no.kb-feedback-selected { background: #dc2626; color: #fff; border-color: #dc2626; }
.kb-feedback-thanks { color: #1E6332; font-size: 14px; font-weight: 500; margin-top: 10px; }
.kb-feedback-thanks i { margin-right: 6px; }
.kb-feedback-flash { animation: kbFeedbackFlash 0.4s ease; }
@keyframes kbFeedbackFlash {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ── Related Articles ── */
.kb-related-card {
    padding: 14px 16px; background: #fff; border: 1px solid #e5e1da;
    border-radius: 10px; cursor: pointer; transition: all 0.2s;
}
.kb-related-card:hover { border-color: #1E6332; box-shadow: 0 3px 12px rgba(30,99,50,0.06); transform: translateY(-1px); }
.kb-related-title { font-size: 14px; font-weight: 600; color: #231F20; margin: 8px 0 6px; line-height: 1.3; }
.kb-related-meta { font-size: 12px; color: #9ca3af; }

/* ── Comments ── */
.kb-comments { margin: 32px 0 0; }
.kb-comments h3 { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 16px; color: #231F20; margin: 0 0 18px; display: flex; align-items: center; gap: 8px; }
.kb-comments h3 i { color: #1E6332; }
.kb-comments-count {
    background: #F4F0E9; color: #8a8580; font-size: 12px; font-weight: 600;
    padding: 2px 8px; border-radius: 10px;
}

/* Comment Form */
.kb-comment-form { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.kb-comment-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.kb-comment-input-wrap { flex: 1; position: relative; }
.kb-comment-textarea {
    width: 100%; padding: 12px 80px 12px 14px; border: 1.5px solid #e5e1da;
    border-radius: 10px; font-size: 14px; font-family: 'Futura PT', 'Jost', sans-serif;
    resize: vertical; min-height: 52px; color: #231F20; outline: none;
    transition: border-color 0.2s;
}
.kb-comment-textarea:focus { border-color: #1E6332; }
.kb-comment-submit {
    position: absolute; right: 8px; bottom: 8px;
    padding: 6px 14px !important; font-size: 13px !important;
}

/* Comment List */
.kb-comment-list { display: flex; flex-direction: column; gap: 0; }
.kb-comment {
    display: flex; gap: 12px; padding: 14px 0;
    border-top: 1px solid #f0ede8;
}
.kb-comment-pinned { background: #fefce8; margin: 0 -16px; padding: 14px 16px; border-radius: 8px; border-top: none; }
.kb-comment-body { flex: 1; min-width: 0; }
.kb-comment-header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.kb-comment-author { font-size: 13px; font-weight: 600; color: #231F20; }
.kb-comment-time { font-size: 12px; color: #9ca3af; }
.kb-comment-text { font-size: 14px; color: #374151; line-height: 1.5; }

/* Role Badges */
.kb-role-badge {
    display: inline-flex; align-items: center; padding: 1px 7px;
    border-radius: 4px; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.kb-role-employee { background: #1E633215; color: #1E6332; }
.kb-role-admin { background: #d9770615; color: #d97706; }
.kb-pinned-badge { font-size: 11px; color: #d97706; font-weight: 500; }
.kb-pinned-badge i { margin-right: 3px; font-size: 10px; }

/* ── Search Results ── */
.kb-search-header { padding: 20px 24px 0; }
.kb-search-count { font-size: 14px; color: #6b7280; margin: 12px 0 0; }

/* ── Buttons ── */
.kb-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
    font-family: 'Futura PT', 'Jost', sans-serif;
    border: 1.5px solid transparent; cursor: pointer; transition: all 0.2s;
}
.kb-btn-primary {
    background: #1E6332; color: #fff; border-color: #1E6332;
}
.kb-btn-primary:hover { background: #214A3E; transform: translateY(-1px); box-shadow: 0 3px 10px rgba(30,99,50,0.2); }

/* ── IC Logo Preview on Home Cards ── */
.kb-cat-ic-logos { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0ede8; }
.kb-cat-ic-logo {
    width: 36px; height: 36px; border-radius: 8px; border: 1px solid #e5e1da;
    background: #fff; display: flex; align-items: center; justify-content: center;
    overflow: hidden; font-size: 14px; color: #d97706;
}
.kb-cat-ic-logo img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.kb-cat-ic-more { font-size: 11px; font-weight: 600; color: #9ca3af; background: #f0ede8; border-color: transparent; }

/* ==================== FORMS & RESOURCES (Document Repository) ==================== */
.kb-docs-grid {
    padding: 16px 24px;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
}
.kb-doc-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid #e5e1da; border-radius: 12px;
    cursor: pointer; transition: all 0.2s; overflow: hidden;
}
.kb-doc-card:hover { border-color: #2563eb40; box-shadow: 0 6px 20px rgba(37,99,235,0.08); transform: translateY(-2px); }

/* Mini document preview thumbnail */
.kb-doc-thumb {
    height: 120px; background: #f8f7f5; position: relative;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-bottom: 2px solid;
}
.kb-doc-thumb-icon { font-size: 36px; }
.kb-doc-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.kb-doc-type-badge {
    position: absolute; top: 10px; right: 10px;
    padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700;
    letter-spacing: 0.5px;
}

/* Card body */
.kb-doc-card-body { padding: 14px 16px; flex: 1; }
.kb-doc-title { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 14px; font-weight: 600; color: #231F20; margin: 0 0 6px; line-height: 1.3; }
.kb-doc-desc {
    font-size: 12px; color: #6b7280; margin: 0 0 10px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.kb-doc-meta { display: flex; gap: 10px; font-size: 11px; color: #9ca3af; align-items: center; }
.kb-doc-meta i { margin-right: 2px; }

/* Card footer actions */
.kb-doc-card-footer {
    display: flex; border-top: 1px solid #f0ede8;
}
.kb-doc-action-btn {
    flex: 1; padding: 10px; border: none; background: none;
    font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.15s;
    font-family: 'Futura PT', 'Jost', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 5px;
    color: #6b7280;
}
.kb-doc-action-btn:first-child { border-right: 1px solid #f0ede8; }
.kb-doc-action-btn:hover { background: #f8f7f5; color: #2563eb; }
.kb-doc-action-dl:hover { color: #1E6332; }

/* Document Preview Modal */
.kb-doc-preview-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10200;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s;
}
.kb-doc-preview-overlay.active { opacity: 1; }
.kb-doc-preview-modal {
    background: #fff; border-radius: 14px; width: 90%; max-width: 800px; max-height: 90vh;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2); transform: scale(0.95); transition: transform 0.2s;
}
.kb-doc-preview-overlay.active .kb-doc-preview-modal { transform: scale(1); }
.kb-doc-preview-header {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 16px 20px; border-bottom: 1px solid #eee;
}
.kb-doc-preview-header-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.kb-doc-preview-name { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 16px; font-weight: 600; color: #231F20; }
.kb-doc-preview-meta { font-size: 12px; color: #9ca3af; }
.kb-doc-preview-actions { display: flex; gap: 8px; align-items: center; }
.kb-doc-preview-close {
    width: 32px; height: 32px; border-radius: 8px; border: 1px solid #e5e1da;
    background: #fff; color: #6b7280; cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.kb-doc-preview-close:hover { background: #f0ede8; color: #231F20; }
.kb-doc-preview-body { flex: 1; overflow-y: auto; padding: 40px; }
.kb-doc-preview-placeholder { text-align: center; color: #6b7280; }
.kb-doc-preview-placeholder h3 { margin: 16px 0 8px; color: #231F20; font-size: 18px; }
.kb-doc-preview-placeholder p { margin: 0 0 8px; font-size: 14px; line-height: 1.5; }
.kb-doc-preview-note { font-size: 12px; color: #9ca3af; font-style: italic; margin-top: 16px !important; }

/* ==================== INSURANCE KNOWLEDGE BASE ==================== */
.kb-ic-table-wrap { padding: 0 24px 24px; overflow-x: auto; }
.kb-ic-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.kb-ic-table thead th {
    padding: 10px 12px; text-align: left; font-size: 11px; font-weight: 600;
    color: #9ca3af; text-transform: uppercase; letter-spacing: 0.3px;
    border-bottom: 2px solid #eee; white-space: nowrap;
    position: sticky; top: 0; background: #fff; z-index: 1;
}
.kb-ic-row { border-bottom: 1px solid #f0ede8; transition: background 0.1s; background: #fff; }
.kb-ic-row:hover { background: #fafaf8; }
.kb-ic-table td { padding: 10px 12px; vertical-align: middle; font-size: 13px; color: #374151; }
.kb-ic-name-cell { display: flex; align-items: center; gap: 10px; min-width: 220px; }
.kb-ic-row-logo {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    background: #fafaf8; border: 1px solid #e5e1da;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    font-size: 14px; color: #d97706;
}
.kb-ic-row-logo img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.kb-ic-row-name { font-weight: 600; color: #231F20; white-space: nowrap; }
.kb-ic-loc-cell { font-size: 12px; color: #6b7280; white-space: nowrap; }
.kb-ic-yes {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 6px; font-size: 11px;
}
.kb-ic-yes-warn { background: #fef3c7; color: #92400e; }
.kb-ic-yes-green { background: #dcfce7; color: #166534; }
.kb-ic-yes-blue { background: #dbeafe; color: #1e40af; }
.kb-ic-no { color: #d5d0c8; font-size: 12px; }
.kb-ic-view-btn {
    padding: 5px 14px; border-radius: 6px; border: 1px solid #e5e1da;
    background: #fff; color: #1E6332; font-size: 12px; font-weight: 600;
    cursor: pointer; transition: all 0.15s; font-family: 'Futura PT', 'Jost', sans-serif;
    white-space: nowrap;
}
.kb-ic-view-btn:hover { background: #1E6332; color: #fff; border-color: #1E6332; }
.kb-ic-view-btn i { margin-right: 4px; }

/* IC Detail Modal */
.kb-ic-detail-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10200;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s;
}
.kb-ic-detail-overlay.active { opacity: 1; }
.kb-ic-detail-modal {
    background: #fff; border-radius: 14px; width: 90%; max-width: 640px; max-height: 90vh;
    overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    transform: scale(0.95); transition: transform 0.2s;
}
.kb-ic-detail-overlay.active .kb-ic-detail-modal { transform: scale(1); }
.kb-ic-detail-header {
    display: flex; align-items: center; gap: 16px; padding: 20px 24px;
    background: linear-gradient(135deg, #1E6332, #214A3E); color: #fff; position: relative;
    border-radius: 14px 14px 0 0;
}
.kb-ic-detail-header .kb-doc-preview-close { position: absolute; top: 16px; right: 16px; border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.1); }
.kb-ic-detail-header .kb-doc-preview-close:hover { background: rgba(255,255,255,0.2); }
.kb-ic-detail-logo {
    width: 60px; height: 60px; border-radius: 12px; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
.kb-ic-detail-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; border-radius: 8px; background: #fff; }
.kb-ic-detail-title h2 { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 20px; margin: 0 0 2px; }
.kb-ic-detail-title p { margin: 0; font-size: 13px; opacity: 0.7; }
.kb-ic-detail-badges { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 24px; border-bottom: 1px solid #eee; }
.kb-ic-detail-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
    border-radius: 8px; font-size: 12px; font-weight: 600;
}
.kb-ic-detail-badge i { font-size: 11px; }
.kb-ic-badge-ok { background: #dcfce7; color: #166534; }
.kb-ic-badge-warn { background: #fef3c7; color: #92400e; }
.kb-ic-badge-neutral { background: #f3f4f6; color: #6b7280; }
.kb-ic-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0 24px;
}
.kb-ic-detail-field { padding: 12px 0; border-bottom: 1px solid #f0ede8; }
.kb-ic-detail-field-label { font-size: 11px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 3px; }
.kb-ic-detail-field-label i { margin-right: 4px; color: #1E6332; }
.kb-ic-detail-field-value { font-size: 14px; color: #231F20; word-break: break-word; }
.kb-ic-detail-section { padding: 16px 24px; border-top: 1px solid #eee; }
.kb-ic-detail-section h3 { font-family: 'Futura PT', 'Jost', sans-serif; font-size: 14px; font-weight: 600; color: #231F20; margin: 0 0 8px; }
.kb-ic-detail-section h3 i { color: #1E6332; margin-right: 6px; }
.kb-ic-detail-section p { font-size: 13px; color: #374151; line-height: 1.5; margin: 0 0 6px; }
.kb-ic-detail-sub { font-size: 12px; color: #6b7280; }
.kb-ic-doc-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.kb-ic-doc-item {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    background: #f8faf8; border: 1px solid #e5e1da; border-radius: 8px;
    font-size: 13px; color: #231F20;
}
.kb-ic-doc-item i { color: #1E6332; font-size: 12px; flex-shrink: 0; }
.kb-ic-doc-note {
    margin-top: 12px; padding: 10px 14px; background: #fefce8; border: 1px solid #fde68a;
    border-radius: 8px; font-size: 12px; color: #92400e; line-height: 1.5;
}
.kb-ic-doc-note i { margin-right: 5px; }
.kb-ic-extra-row {
    display: flex; justify-content: space-between; gap: 12px; padding: 8px 0;
    font-size: 13px; border-bottom: 1px solid #f0ede8;
}
.kb-ic-extra-row:last-child { border-bottom: none; }
.kb-ic-extra-label { font-weight: 600; color: #6b7280; flex-shrink: 0; }

/* ==================== UPDATES & FAQ ==================== */
.kb-uf-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    padding: 0; align-items: flex-start;
}
.kb-uf-left {
    padding: 20px 24px; border-right: 1px solid #eee;
    position: sticky; top: 0; max-height: calc(100vh - 200px); overflow-y: auto;
}
.kb-uf-right { padding: 20px 24px; }
.kb-uf-section-title {
    font-family: 'Futura PT', 'Jost', sans-serif; font-size: 17px; font-weight: 600;
    color: #231F20; margin: 0 0 16px; display: flex; align-items: center; gap: 8px;
}
.kb-uf-section-title i { color: #7c3aed; }

/* Company Timeline (What's New) */
.kb-timeline { position: relative; padding-left: 24px; }
.kb-timeline::before {
    content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
    width: 2px; background: linear-gradient(180deg, #1E6332 0%, #C19A6B 100%);
}
.kb-timeline-item { position: relative; margin-bottom: 20px; }
.kb-timeline-dot-wrap { position: absolute; left: -24px; top: 0; }
.kb-timeline-dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: #1E6332; border: 3px solid #fff;
    box-shadow: 0 0 0 2px #1E633240;
}
.kb-timeline-card {
    background: #fff; border: 1px solid #e5e1da; border-radius: 10px;
    padding: 16px; transition: all 0.2s;
}
.kb-timeline-card:hover { border-color: #1E633240; box-shadow: 0 3px 12px rgba(30,99,50,0.06); }
.kb-timeline-img {
    width: 100%; height: 120px; border-radius: 8px; overflow: hidden; margin-bottom: 10px;
    background: #f0ede8;
}
.kb-timeline-img img { width: 100%; height: 100%; object-fit: cover; }
.kb-timeline-date {
    font-family: 'Futura PT', 'Jost', sans-serif; font-size: 13px; font-weight: 600;
    color: #1E6332; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.3px;
}
.kb-timeline-title {
    font-family: 'Futura PT', 'Jost', sans-serif; font-size: 14px; font-weight: 600;
    color: #231F20; margin: 0 0 6px;
}
.kb-timeline-desc { font-size: 13px; color: #6b7280; line-height: 1.5; margin: 0 0 8px; }
.kb-timeline-learn-more {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 6px; border: 1px solid #1E6332;
    background: #fff; color: #1E6332; font-size: 12px; font-weight: 600;
    cursor: pointer; font-family: 'Futura PT', 'Jost', sans-serif; transition: all 0.15s;
}
.kb-timeline-learn-more:hover { background: #1E6332; color: #fff; }
.kb-timeline-learn-more i { font-size: 10px; transition: transform 0.15s; }
.kb-timeline-learn-more:hover i { transform: translateX(3px); }

/* Update Detail Modal */
.kb-update-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10200;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s;
}
.kb-update-overlay.active { opacity: 1; }
.kb-update-modal {
    background: #fff; border-radius: 14px; width: 90%; max-width: 680px; max-height: 85vh;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2); transform: scale(0.95); transition: transform 0.2s;
}
.kb-update-overlay.active .kb-update-modal { transform: scale(1); }
.kb-update-modal-header {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
    padding: 24px 28px; background: linear-gradient(135deg, #1E6332, #214A3E);
    border-radius: 14px 14px 0 0;
}
.kb-update-modal-header .kb-timeline-date { color: rgba(255,255,255,0.7); }
.kb-update-modal-body { padding: 24px 28px; overflow-y: auto; flex: 1; }

/* FAQ Accordion */
.kb-faq-group { margin-bottom: 16px; }
.kb-faq-group-label {
    font-size: 12px; font-weight: 700; color: #9ca3af; text-transform: uppercase;
    letter-spacing: 0.4px; margin-bottom: 8px; padding-left: 2px;
}
.kb-faq-detail {
    background: #fff; border: 1px solid #e5e1da; border-radius: 10px;
    margin-bottom: 8px; overflow: hidden;
}
.kb-faq-detail summary {
    padding: 14px 18px; font-size: 14px; font-weight: 600; color: #231F20;
    cursor: pointer; list-style: none; display: flex; align-items: center; gap: 10px;
    transition: background 0.15s;
}
.kb-faq-detail summary::-webkit-details-marker { display: none; }
.kb-faq-detail summary::before { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px; color: #9ca3af; transition: transform 0.2s; }
.kb-faq-detail[open] summary::before { transform: rotate(90deg); color: #7c3aed; }
.kb-faq-detail summary:hover { background: #fafaf8; }
.kb-faq-detail[open] summary { border-bottom: 1px solid #f0ede8; }
.kb-faq-answer { padding: 14px 18px; font-size: 14px; color: #374151; line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .kb-home-layout { grid-template-columns: 1fr; }
    .kb-home-sidebar { position: static; flex-direction: row; gap: 14px; }
    .kb-sidebar-section { flex: 1; min-width: 0; }
    .kb-article-layout { grid-template-columns: 1fr; padding: 16px; }
    .kb-article-sidebar { position: static; }
    .kb-article-card-wrap { padding: 20px; }
    .kb-uf-layout { grid-template-columns: 1fr; }
    .kb-uf-left { border-right: none; border-bottom: 1px solid #eee; position: static; max-height: none; }
}

@media (max-width: 768px) {
    .kb-hero { padding: 32px 16px 40px; }
    .kb-hero-title { font-size: 22px; }
    .kb-hero-subtitle { font-size: 13px; }
    .kb-search-input { padding: 12px 14px 12px 40px; font-size: 14px; }
    .kb-featured-row { margin: -20px 16px 20px; grid-template-columns: 1fr; }
    .kb-featured-body { padding: 14px 16px; }
    .kb-featured-arrow { display: none; }
    .kb-featured-title { font-size: 17px; }
    .kb-section { padding: 0 16px; }
    .kb-categories-grid { grid-template-columns: 1fr; }
    .kb-home-layout { padding: 0 16px; }
    .kb-home-sidebar { flex-direction: column; }
    .kb-categories-grid { grid-template-columns: 1fr; }
    .kb-breadcrumb { padding: 10px 16px; font-size: 12px; }
    .kb-cat-header { padding: 16px; gap: 12px; }
    .kb-cat-header-icon { width: 42px; height: 42px; font-size: 18px; }
    .kb-cat-header-title { font-size: 18px; }
    .kb-filter-bar { padding: 10px 16px; flex-direction: column; align-items: stretch; }
    .kb-search-wrap-sm { max-width: none; }
    .kb-article-list { padding: 12px 16px; }
    .kb-article-card { padding: 14px 16px; }
    .kb-card-title { font-size: 15px; }
    .kb-article-layout { padding: 12px; }
    .kb-article-card-wrap { padding: 16px; }
    .kb-article-title { font-size: 22px; }
    .kb-article-meta-bar { gap: 10px; font-size: 12px; }
    .kb-feedback-btns { flex-direction: column; gap: 8px; }
    .kb-feedback-btn { justify-content: center; }
    .kb-comment-form { gap: 8px; }
    .kb-comment-avatar { width: 32px; height: 32px; font-size: 12px; }
    .kb-home-sidebar { flex-direction: column; }
}
