/* Knowledge Base front styles - Modern redesign */

/* ===== Base & Layout ===== */
.kb-content-wrapper {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.kb-content-wrapper h1 {
    font-weight: 500;
    margin-bottom: 10px;
}

/* ===== Hero Section ===== */
.kb-hero {
    text-align: center;
    padding: 40px 0 50px;
}

.kb-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

body.dark-theme .kb-hero h1,
body[data-template="dark"] .kb-hero h1 {
    color: #f5f7ff;
}

.kb-hero-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 35px;
}

body.dark-theme .kb-hero-subtitle,
body[data-template="dark"] .kb-hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Compact Search ===== */
.kb-search-compact {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.kb-search-input-wrapper {
    flex: 1;
    position: relative;
}

.kb-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    pointer-events: none;
    z-index: 1;
}

.kb-search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
    z-index: 2;
}

.kb-search-input:focus {
    outline: none;
    border-color: #5c6bc0;
    box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.1);
}

body.dark-theme .kb-search-input,
body[data-template="dark"] .kb-search-input {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.15);
    color: #f5f7ff;
}

body.dark-theme .kb-search-input:focus,
body[data-template="dark"] .kb-search-input:focus {
    border-color: #5c6bc0;
    box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.2);
}

.kb-filters-toggle {
    padding: 16px 24px;
    background: #fff;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #5c6bc0;
    transition: all 0.2s ease;
    white-space: nowrap;
    height: 48px;
    box-sizing: border-box;
}

.kb-filters-toggle:hover {
    background: #f8f9fa;
    border-color: #5c6bc0;
}

body.dark-theme .kb-filters-toggle,
body[data-template="dark"] .kb-filters-toggle {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.15);
    color: #8b9dc3;
}

body.dark-theme .kb-filters-toggle:hover,
body[data-template="dark"] .kb-filters-toggle:hover {
    background: #353d52;
    border-color: #5c6bc0;
}

.kb-filters-toggle .material-icons {
    font-size: 20px;
}

/* ===== Search Dropdown (Live Results) ===== */
.kb-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
}

body.dark-theme .kb-search-dropdown,
body[data-template="dark"] .kb-search-dropdown {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.kb-search-result-item {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f3f7;
    cursor: pointer;
    transition: background 0.15s ease;
}

.kb-search-result-item:last-child {
    border-bottom: none;
}

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

body.dark-theme .kb-search-result-item,
body[data-template="dark"] .kb-search-result-item {
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .kb-search-result-item:hover,
body[data-template="dark"] .kb-search-result-item:hover {
    background: #353d52;
}

.kb-search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    display: block;
}

body.dark-theme .kb-search-result-title,
body[data-template="dark"] .kb-search-result-title {
    color: #f5f7ff;
}

.kb-search-result-category {
    font-size: 12px;
    color: #95a5a6;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.kb-search-result-category .material-icons {
    font-size: 14px;
}

.kb-search-result-summary {
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 6px;
}

body.dark-theme .kb-search-result-summary,
body[data-template="dark"] .kb-search-result-summary {
    color: rgba(255, 255, 255, 0.6);
}

.kb-search-empty,
.kb-search-loading {
    padding: 24px;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* ===== Advanced Filters ===== */
.kb-advanced-filters {
    max-width: 700px;
    margin: 20px auto 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    animation: slideDown 0.3s ease;
}

body.dark-theme .kb-advanced-filters,
body[data-template="dark"] .kb-advanced-filters {
    background: #2a3142;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kb-filters-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: start;
}

.kb-filters-row .form-group {
    margin-bottom: 0;
}

.kb-filters-actions {
    display: flex;
    gap: 8px;
}

.kb-filters-actions .btn {
    padding: 10px 20px;
    border-radius: 8px;
    white-space: nowrap;
}

/* ===== Categories Grid ===== */
.kb-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.kb-category-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kb-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5c6bc0, #7986cb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.kb-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #5c6bc0;
}

.kb-category-card:hover::before {
    transform: scaleX(1);
}

body.dark-theme .kb-category-card,
body[data-template="dark"] .kb-category-card {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .kb-category-card:hover,
body[data-template="dark"] .kb-category-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.kb-category-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.kb-category-icon .material-icons {
    font-size: 32px;
    color: #fff;
}

.kb-category-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #2c3e50;
}

body.dark-theme .kb-category-title,
body[data-template="dark"] .kb-category-title {
    color: #f5f7ff;
}

.kb-category-count {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 18px;
}

.kb-category-top-articles {
    list-style: none;
    padding: 0;
    margin: 18px 0;
    border-top: 1px solid #f0f3f7;
    padding-top: 18px;
}

body.dark-theme .kb-category-top-articles,
body[data-template="dark"] .kb-category-top-articles {
    border-color: rgba(255, 255, 255, 0.08);
}

.kb-category-top-articles li {
    margin-bottom: 10px;
}

.kb-category-top-articles li:last-child {
    margin-bottom: 0;
}

.kb-category-top-articles a {
    font-size: 14px;
    color: #5c6bc0;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.kb-category-top-articles a:hover {
    color: #3f51b5;
    text-decoration: underline;
}

body.dark-theme .kb-category-top-articles a,
body[data-template="dark"] .kb-category-top-articles a {
    color: #8b9dc3;
}

.kb-category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5c6bc0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.2s ease;
}

.kb-category-link:hover {
    gap: 10px;
}

.kb-category-link .material-icons {
    font-size: 18px;
}

/* ===== Popular Tags ===== */
.kb-popular-tags {
    margin: 50px 0;
}

.kb-popular-tags h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2c3e50;
}

body.dark-theme .kb-popular-tags h2,
body[data-template="dark"] .kb-popular-tags h2 {
    color: #f5f7ff;
}

.kb-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kb-tag-cloud-item {
    display: inline-block;
    padding: 10px 18px;
    background: #f8f9fa;
    border: 1px solid #e0e6ed;
    border-radius: 20px;
    font-size: 14px;
    color: #5c6bc0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.kb-tag-cloud-item:hover {
    background: #5c6bc0;
    border-color: #5c6bc0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 107, 192, 0.3);
}

body.dark-theme .kb-tag-cloud-item,
body[data-template="dark"] .kb-tag-cloud-item {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.15);
    color: #8b9dc3;
}

body.dark-theme .kb-tag-cloud-item:hover,
body[data-template="dark"] .kb-tag-cloud-item:hover {
    background: #5c6bc0;
    border-color: #5c6bc0;
    color: #fff;
}

/* ===== Recent Articles ===== */
.kb-recent-articles {
    margin: 50px 0;
}

.kb-recent-articles h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2c3e50;
}

body.dark-theme .kb-recent-articles h2,
body[data-template="dark"] .kb-recent-articles h2 {
    color: #f5f7ff;
}

.kb-recent-list {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    overflow: hidden;
}

body.dark-theme .kb-recent-list,
body[data-template="dark"] .kb-recent-list {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.1);
}

.kb-recent-item {
    padding: 18px 24px;
    border-bottom: 1px solid #f0f3f7;
    transition: background 0.15s ease;
}

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

.kb-recent-item:hover {
    background: #f8f9fa;
}

body.dark-theme .kb-recent-item,
body[data-template="dark"] .kb-recent-item {
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .kb-recent-item:hover,
body[data-template="dark"] .kb-recent-item:hover {
    background: #353d52;
}

.kb-recent-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.kb-recent-title:hover {
    color: #5c6bc0;
}

body.dark-theme .kb-recent-title,
body[data-template="dark"] .kb-recent-title {
    color: #f5f7ff;
}

.kb-recent-meta {
    font-size: 13px;
    color: #95a5a6;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.kb-recent-meta .material-icons {
    font-size: 16px;
    vertical-align: middle;
}

.kb-recent-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ===== Search Results Section ===== */
.kb-search-results-section {
    margin-top: 40px;
}

.kb-search-results-section h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2c3e50;
}

body.dark-theme .kb-search-results-section h2,
body[data-template="dark"] .kb-search-results-section h2 {
    color: #f5f7ff;
}

/* ===== Article Cards (Legacy Support) ===== */
.kb-article-list {
    margin-top: 24px;
    list-style: none;
    padding: 0;
}

.kb-article-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.kb-article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #5c6bc0;
}

body.dark-theme .kb-article-card,
body[data-template="dark"] .kb-article-card {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.1);
}

.kb-article-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.kb-article-card h3 a {
    color: inherit;
    text-decoration: none;
}

.kb-article-card h3 a:hover {
    color: #5c6bc0;
}

.kb-excerpt {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

body.dark-theme .kb-excerpt,
body[data-template="dark"] .kb-excerpt {
    color: rgba(255, 255, 255, 0.6);
}

.kb-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 12px;
}

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

.kb-meta-item .material-icons {
    font-size: 16px;
}

.kb-tags-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kb-tags-inline .kb-tag {
    display: inline-block;
    padding: 0px 12px;
    border-radius: 16px;
    background: #f0f3f7;
    border: 1px solid #e0e6ed;
    font-size: 12px;
    color: #5c6bc0;
    font-weight: 500;
}

body.dark-theme .kb-tags-inline .kb-tag,
body[data-template="dark"] .kb-tags-inline .kb-tag {
    background: rgba(92, 107, 192, 0.15);
    border-color: rgba(92, 107, 192, 0.3);
    color: #8b9dc3;
}

/* ===== Empty State ===== */
.kb-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
    font-size: 16px;
    border: 2px dashed #e0e6ed;
    border-radius: 12px;
    background: #f8f9fa;
}

body.dark-theme .kb-empty-state,
body[data-template="dark"] .kb-empty-state {
    background: #2a3142;
    border-color: rgba(255, 255, 255, 0.15);
}

/* ===== Article View Page ===== */
.kb-article-view {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.dark-theme .kb-article-view,
body[data-template="dark"] .kb-article-view {
    background: #2a3142;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.kb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.kb-header h1 {
    flex: 1;
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

body.dark-theme .kb-header h1,
body[data-template="dark"] .kb-header h1 {
    color: #f5f7ff;
}

.kb-header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Copy Link Button */
.kb-copy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    color: #5c6bc0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.kb-copy-link:hover {
    background: #f8f9fa;
    border-color: #5c6bc0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 107, 192, 0.2);
}

.kb-copy-link.is-success {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.kb-copy-link .material-icons {
    font-size: 20px;
}

body.dark-theme .kb-copy-link,
body[data-template="dark"] .kb-copy-link {
    background: #353d52;
    border-color: rgba(255, 255, 255, 0.15);
    color: #8b9dc3;
}

body.dark-theme .kb-copy-link:hover,
body[data-template="dark"] .kb-copy-link:hover {
    background: #3f4a61;
    border-color: #5c6bc0;
    color: #a5b4e0;
}

body.dark-theme .kb-copy-link.is-success,
body[data-template="dark"] .kb-copy-link.is-success {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

/* Article Meta */
.kb-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
    align-items: center;
}

body.dark-theme .kb-article-meta,
body[data-template="dark"] .kb-article-meta {
    background: rgba(255, 255, 255, 0.05);
}

.kb-article-meta .label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
}

.kb-article-meta .label .material-icons {
    font-size: 18px;
}

.kb-article-meta .label-info {
    background: rgba(92, 107, 192, 0.1);
    color: #5c6bc0;
    border-color: rgba(92, 107, 192, 0.2);
}

.kb-article-meta .label-success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.2);
}

.kb-article-meta .label-default {
    background: rgba(149, 165, 166, 0.1);
    color: #7f8c8d;
    border-color: rgba(149, 165, 166, 0.2);
}

body.dark-theme .kb-article-meta .label-info,
body[data-template="dark"] .kb-article-meta .label-info {
    background: rgba(92, 107, 192, 0.2);
    color: #8b9dc3;
    border-color: rgba(92, 107, 192, 0.3);
}

body.dark-theme .kb-article-meta .label-success,
body[data-template="dark"] .kb-article-meta .label-success {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    border-color: rgba(76, 175, 80, 0.3);
}

body.dark-theme .kb-article-meta .label-default,
body[data-template="dark"] .kb-article-meta .label-default {
    background: rgba(255, 255, 255, 0.1);
    color: #b0bec5;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Article Content */
.kb-article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 40px;
}

body.dark-theme .kb-article-content,
body[data-template="dark"] .kb-article-content {
    color: rgba(255, 255, 255, 0.9);
}

.kb-article-content h1,
.kb-article-content h2,
.kb-article-content h3,
.kb-article-content h4,
.kb-article-content h5,
.kb-article-content h6 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.kb-article-content h1 { font-size: 28px; }
.kb-article-content h2 { font-size: 24px; }
.kb-article-content h3 { font-size: 20px; }
.kb-article-content h4 { font-size: 18px; }

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

.kb-article-content ul,
.kb-article-content ol {
    margin-bottom: 16px;
    padding-left: 28px;
}

.kb-article-content li {
    margin-bottom: 8px;
}

.kb-article-content code {
    padding: 2px 6px;
    background: rgba(92, 107, 192, 0.1);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

body.dark-theme .kb-article-content code,
body[data-template="dark"] .kb-article-content code {
    background: rgba(92, 107, 192, 0.2);
}

.kb-article-content pre {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 16px;
}

body.dark-theme .kb-article-content pre,
body[data-template="dark"] .kb-article-content pre {
    background: rgba(0, 0, 0, 0.3);
}

.kb-article-content pre code {
    background: none;
    padding: 0;
}

.kb-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.kb-article-content blockquote {
    border-left: 4px solid #5c6bc0;
    padding-left: 20px;
    margin: 20px 0;
    color: #7f8c8d;
    font-style: italic;
}

body.dark-theme .kb-article-content blockquote,
body[data-template="dark"] .kb-article-content blockquote {
    color: rgba(255, 255, 255, 0.7);
}

/* Rating Section */
.kb-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 32px;
}

body.dark-theme .kb-rating-wrapper,
body[data-template="dark"] .kb-rating-wrapper {
    background: rgba(255, 255, 255, 0.05);
}

.kb-rating-wrapper > span {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

body.dark-theme .kb-rating-wrapper > span,
body[data-template="dark"] .kb-rating-wrapper > span {
    color: #f5f7ff;
}

.kb-rating-buttons {
    display: flex;
    gap: 8px;
}

.kb-rating-buttons .btn {
    min-width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.kb-rating-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 107, 192, 0.3);
}

.kb-rating-buttons .btn.is-active {
    background: #5c6bc0;
    border-color: #5c6bc0;
    color: #fff;
}

.kb-rating-buttons .btn.is-preview {
    background: rgba(92, 107, 192, 0.1);
    border-color: #5c6bc0;
    color: #5c6bc0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .kb-hero h1 {
        font-size: 32px;
    }
    
    .kb-hero-subtitle {
        font-size: 16px;
    }
    
    .kb-search-compact {
        flex-direction: column;
    }
    
    .kb-filters-row {
        grid-template-columns: 1fr;
    }
    
    .kb-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .kb-filters-actions {
        flex-direction: column;
    }
    
    .kb-filters-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .kb-content-wrapper {
        padding: 0 16px;
    }
    
    .kb-hero {
        padding: 30px 0 40px;
    }
    
    .kb-category-card {
        padding: 20px;
    }
}
