/* ============================================================
   KNOWLEDGE BASE — Frontend Styles
   Primary: #8dbf42 | Dark: #111827 | Gray: #6b7280
   ============================================================ */

/* ── WRAP ─────────────────────────────────────────────────── */
.lo-kb-wrap {
    padding-bottom: 60px;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* ── HERO ─────────────────────────────────────────────────── */
.lo-kb-hero {
    background: linear-gradient(140deg, #0a1628 0%, #0f2d0f 45%, #1a4a10 75%, #8dbf42 200%) !important;
    padding: 90px 24px 100px !important;
    text-align: center !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}
/* Glow orbs */
.lo-kb-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(141,191,66,.22) 0%, transparent 65%);
    pointer-events: none;
    animation: lo-kb-pulse 5s ease-in-out infinite;
}
.lo-kb-hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    bottom: -100px; right: 10%;
    background: radial-gradient(circle, rgba(46,120,20,.25) 0%, transparent 65%);
    pointer-events: none;
}
@keyframes lo-kb-pulse {
    0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
    50%       { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.lo-kb-hero-inner {
    position: relative !important;
    z-index: 2 !important;
    max-width: 740px;
    margin: 0 auto;
}

.lo-kb-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    margin: 0 0 16px !important;
    letter-spacing: -0.03em !important;
    line-height: 1.1 !important;
    text-shadow: 0 2px 20px rgba(0,0,0,.45), 0 0 60px rgba(141,191,66,.3) !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
}
.lo-kb-hero-subtitle {
    font-size: 1.1rem !important;
    color: rgba(255,255,255,.82) !important;
    margin: 0 0 40px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    text-shadow: 0 1px 6px rgba(0,0,0,.3) !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
}

/* Search bar */
.lo-kb-search-form { max-width: 660px; margin: 0 auto; position: relative; }
.lo-kb-search-bar {
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    border-radius: 60px !important;
    box-shadow: 0 12px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1) !important;
    overflow: hidden !important;
    padding: 8px 8px 8px 22px !important;
    gap: 8px !important;
    transition: box-shadow .3s !important;
}
.lo-kb-search-bar:focus-within {
    box-shadow: 0 12px 48px rgba(0,0,0,.4), 0 0 0 3px rgba(141,191,66,.5) !important;
}
.lo-kb-search-icon { width: 20px; height: 20px; color: #9ca3af; flex-shrink: 0; }
.lo-kb-search-input {
    flex: 1 !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 1rem !important;
    color: #111827 !important;
    padding: 10px 0 !important;
    min-height: unset !important;
    box-shadow: none !important;
    font-family: 'Inter', -apple-system, sans-serif !important;
}
.lo-kb-search-btn {
    background: #8dbf42 !important;
    color: #fff !important;
    border: none !important;
    padding: 13px 30px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: background .2s, transform .15s !important;
    white-space: nowrap !important;
    letter-spacing: .01em !important;
}
.lo-kb-search-btn:hover { background: #7aaa32 !important; transform: scale(1.04) !important; }

/* Suggestions dropdown */
.lo-kb-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    z-index: 999;
    overflow: hidden;
}
.lo-kb-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    text-decoration: none;
    color: #111827;
    font-size: .9rem;
    transition: background .15s;
    border-bottom: 1px solid #f3f4f6;
}
.lo-kb-suggestion-item:last-child { border-bottom: none; }
.lo-kb-suggestion-item:hover { background: #f0f9e8; }
.lo-kb-sug-icon { font-size: 1rem; }
.lo-kb-sug-text { flex: 1; font-weight: 500; }
.lo-kb-sug-cat { font-size: .78rem; color: #8dbf42; font-weight: 600; }

/* ── FILTERS ──────────────────────────────────────────────── */
.lo-kb-filters-wrap {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.lo-kb-filters-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.lo-kb-filter-group { display: flex; align-items: center; gap: 10px; }
.lo-kb-filter-label { font-size: .75rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.lo-kb-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.lo-kb-pill {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid #e5e7eb;
    background: #f9fafb;
    color: #374151;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    line-height: 1.3;
}
.lo-kb-pill:hover { border-color: #8dbf42; color: #8dbf42; background: #f0f9e8; }
.lo-kb-pill.active { background: #8dbf42 !important; color: #fff !important; border-color: #8dbf42 !important; }

.lo-kb-clear-filters-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1px solid transparent;
}
.lo-kb-clear-filters-btn:hover { background: #fee2e2; border-color: #fca5a5; }

/* ── RESULTS INFO ─────────────────────────────────────────── */
.lo-kb-content-wrap { max-width: 1280px; margin: 40px auto; padding: 0 28px; }
.lo-kb-results-info {
    margin-bottom: 24px;
    color: #6b7280;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.lo-kb-clear-search {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
}
.lo-kb-clear-search:hover { background: #fee2e2; }

/* ── GRID ─────────────────────────────────────────────────── */
.lo-kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
}

/* ── CARD ─────────────────────────────────────────────────── */
.lo-kb-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.lo-kb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15,23,42,.10);
    border-color: #c7e6a0;
}
.lo-kb-card-thumb-link { display: block; }
.lo-kb-card-thumb {
    position: relative;
    height: 196px;
    background: #f1f5f9;
    overflow: hidden;
}
.lo-kb-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.lo-kb-card:hover .lo-kb-card-thumb img { transform: scale(1.05); }
.lo-kb-card-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    background: linear-gradient(135deg, #f0f9e8, #e8f5d8);
}

/* Format badge overlay */
.lo-kb-format-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.lo-kb-format-badge svg { width: 12px; height: 12px; }
.lo-kb-format-article { background: rgba(255,255,255,.92); color: #374151; }
.lo-kb-format-video   { background: rgba(220,38,38,.88);   color: #fff; }

.lo-kb-card-body { padding: 20px 20px 10px; flex: 1; }
.lo-kb-card-cat {
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #8dbf42;
    display: block;
    margin-bottom: 8px;
}
.lo-kb-card-title { margin: 0 0 10px; font-size: 1rem; font-weight: 700; line-height: 1.4; }
.lo-kb-card-title a { color: #111827; text-decoration: none; }
.lo-kb-card-title a:hover { color: #8dbf42; }
.lo-kb-card-excerpt { color: #6b7280; font-size: .875rem; line-height: 1.6; margin: 0; }

.lo-kb-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid #f3f4f6;
    font-size: .78rem;
    color: #9ca3af;
    flex-wrap: wrap;
}
.lo-kb-card-cta {
    margin-left: auto;
    color: #8dbf42;
    font-weight: 700;
    text-decoration: none;
    font-size: .85rem;
    transition: gap .2s;
}
.lo-kb-card-cta:hover { text-decoration: underline; }

/* ── PAGINATION ───────────────────────────────────────────── */
.lo-kb-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.lo-kb-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
}
.lo-kb-page-btn:hover { border-color: #8dbf42; color: #8dbf42; }
.lo-kb-page-btn.active { background: #8dbf42; color: #fff; border-color: #8dbf42; }

/* ── EMPTY STATE ──────────────────────────────────────────── */
.lo-kb-empty {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border: 1px dashed #d1d5db;
    border-radius: 24px;
}
.lo-kb-empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.lo-kb-empty-title { font-size: 1.4rem; font-weight: 700; color: #111827; margin: 0 0 10px; }
.lo-kb-empty-text { color: #6b7280; margin-bottom: 24px; }
.lo-kb-btn-reset {
    display: inline-block;
    padding: 12px 28px;
    background: #8dbf42;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}
.lo-kb-btn-reset:hover { background: #7eac38; color: #fff; }

/* ============================================================
   SINGLE KNOWLEDGE BASE PAGE
   ============================================================ */
.lo-kb-single-wrap { max-width: 1280px; margin: 0 auto; padding: 40px 24px 80px; }

.lo-kb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .83rem;
    color: #9ca3af;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.lo-kb-breadcrumb a { color: #8dbf42; text-decoration: none; font-weight: 500; }
.lo-kb-breadcrumb a:hover { text-decoration: underline; }
.lo-kb-bc-current { color: #374151; font-weight: 600; }

.lo-kb-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.lo-kb-single-meta-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.lo-kb-single-cat-badge {
    display: inline-block;
    padding: 4px 14px;
    background: #f0f9e8;
    color: #5a8a1a;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    transition: background .2s;
}
.lo-kb-single-cat-badge:hover { background: #d8f0b0; }
.lo-kb-single-format-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
}
.lo-kb-single-format-badge.lo-kb-format-article { background: #f3f4f6; color: #374151; }
.lo-kb-single-format-badge.lo-kb-format-video   { background: #fef2f2; color: #dc2626; }

.lo-kb-single-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #111827; margin: 0 0 16px; line-height: 1.25; letter-spacing: -.02em; }

.lo-kb-single-byline { display: flex; gap: 16px; color: #9ca3af; font-size: .85rem; flex-wrap: wrap; margin-bottom: 28px; }

/* Video player */
.lo-kb-video-block { margin-bottom: 36px; }
.lo-kb-video-player-wrap { border-radius: 16px; overflow: hidden; background: #000; }
.lo-kb-video-player { width: 100%; display: block; max-height: 500px; }
.lo-kb-iframe-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; }
.lo-kb-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Featured image */
.lo-kb-single-featured-img { margin-bottom: 32px; border-radius: 16px; overflow: hidden; }
.lo-kb-feat-img { width: 100%; height: auto; display: block; }

/* Prose content */
.lo-kb-prose { color: #374151; font-size: 1rem; line-height: 1.8; }
.lo-kb-prose h2, .lo-kb-prose h3 { color: #111827; margin-top: 2em; }
.lo-kb-prose a { color: #8dbf42; }
.lo-kb-prose img { max-width: 100%; border-radius: 12px; }
.lo-kb-prose blockquote { border-left: 4px solid #8dbf42; padding-left: 18px; color: #6b7280; font-style: italic; margin: 24px 0; }

/* Tags */
.lo-kb-single-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.lo-kb-tags-label { font-size: .8rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .06em; }
.lo-kb-tag-chip {
    display: inline-block;
    padding: 5px 14px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.lo-kb-tag-chip:hover { background: #8dbf42; color: #fff; }

.lo-kb-single-back { margin-top: 32px; }
.lo-kb-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: color .2s;
}
.lo-kb-back-btn:hover { color: #8dbf42; }

/* Sidebar */
.lo-kb-single-sidebar { position: sticky; top: 100px; }
.lo-kb-sidebar-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 20px;
}
.lo-kb-sidebar-title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: #9ca3af; margin: 0 0 16px; }
.lo-kb-related-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lo-kb-related-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.lo-kb-related-icon { flex-shrink: 0; font-size: 1rem; }
.lo-kb-related-item a { color: #374151; text-decoration: none; line-height: 1.4; font-weight: 500; }
.lo-kb-related-item a:hover { color: #8dbf42; }
.lo-kb-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.lo-kb-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    background: #f9fafb;
    border-radius: 10px;
    color: #374151;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: background .2s, color .2s;
}
.lo-kb-cat-list li a:hover { background: #f0f9e8; color: #8dbf42; }
.lo-kb-cat-count { background: #e5e7eb; color: #6b7280; padding: 2px 8px; border-radius: 50px; font-size: .75rem; font-weight: 700; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.lo-kb-admin-wrap { max-width: 1100px; margin: 30px auto; font-family: 'Inter', -apple-system, sans-serif; }
.lo-kb-admin-heading { font-size: 1.8rem; font-weight: 800; color: #111827; margin: 0 0 4px; }
.lo-kb-admin-subheading { color: #6b7280; margin: 0 0 28px; font-size: .9rem; }

.lo-kb-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.lo-kb-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.lo-kb-stat-icon { font-size: 1.8rem; }
.lo-kb-stat-info { display: flex; flex-direction: column; }
.lo-kb-stat-num { font-size: 1.8rem; font-weight: 800; color: #111827; line-height: 1; }
.lo-kb-stat-label { font-size: .8rem; color: #6b7280; font-weight: 600; margin-top: 4px; }

.lo-kb-admin-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.lo-kb-admin-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
}
.lo-kb-btn-primary { background: #8dbf42; color: #fff !important; }
.lo-kb-btn-primary:hover { background: #7eac38; transform: translateY(-1px); }
.lo-kb-btn-secondary { background: #f8fafc; color: #374151 !important; border: 1px solid #e5e7eb; }
.lo-kb-btn-secondary:hover { background: #f1f5f9; border-color: #cbd5e1; }

.lo-kb-admin-table-wrap { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.lo-kb-admin-table { width: 100%; border-collapse: collapse; }
.lo-kb-admin-table th { background: #fafafa; padding: 14px 16px; text-align: left; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: #6b7280; font-weight: 700; border-bottom: 1px solid #e5e7eb; }
.lo-kb-admin-table td { padding: 14px 16px; border-bottom: 1px solid #f3f4f6; color: #374151; font-size: .875rem; vertical-align: middle; }
.lo-kb-admin-table tr:last-child td { border-bottom: none; }
.lo-kb-admin-table tr:hover td { background: #fafafa; }
.lo-kb-table-title a { color: #111827; font-weight: 600; text-decoration: none; }
.lo-kb-table-title a:hover { color: #8dbf42; }

.lo-kb-fmt-tag { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.lo-kb-fmt-article { background: #f3f4f6; color: #374151; }
.lo-kb-fmt-video   { background: #fef2f2; color: #dc2626; }

.lo-kb-badge-pub   { display: inline-block; padding: 3px 10px; background: #d1fae5; color: #065f46; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.lo-kb-badge-draft { display: inline-block; padding: 3px 10px; background: #fef3c7; color: #92400e; border-radius: 50px; font-size: .75rem; font-weight: 700; }

.lo-kb-table-actions { display: flex; gap: 10px; align-items: center; }
.lo-kb-action-link { color: #8dbf42; font-weight: 600; font-size: .8rem; text-decoration: none; }
.lo-kb-action-link:hover { text-decoration: underline; }
.lo-kb-action-trash { color: #dc2626 !important; }
.lo-kb-admin-empty { padding: 40px; text-align: center; color: #6b7280; }

/* Meta Box */
.lo-kb-meta-box { display: flex; flex-direction: column; gap: 14px; }
.lo-kb-meta-row { display: flex; flex-direction: column; gap: 6px; }
.lo-kb-meta-row label { font-weight: 600; font-size: .875rem; color: #111827; }
.lo-kb-meta-row select, .lo-kb-meta-row input[type="text"], .lo-kb-meta-row input[type="url"] {
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: .9rem;
    color: #111827;
    max-width: 480px;
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
}
.lo-kb-meta-row select:focus, .lo-kb-meta-row input:focus {
    outline: none;
    border-color: #8dbf42;
    box-shadow: 0 0 0 3px rgba(141,191,66,.12);
}
.lo-kb-meta-hint { font-size: .78rem; color: #9ca3af; margin: 0; }
.lo-kb-media-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 18px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: background .2s;
}
.lo-kb-media-btn:hover { background: #e5e7eb; }
.lo-kb-media-preview { margin-top: 10px; }
.lo-kb-media-preview video { max-width: 320px; border-radius: 8px; }
.lo-kb-media-clear { display: inline-block; margin-left: 10px; color: #dc2626; font-size: .8rem; cursor: pointer; font-weight: 600; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .lo-kb-single-layout { grid-template-columns: 1fr; }
    .lo-kb-single-sidebar { position: static; }
    .lo-kb-stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .lo-kb-grid { grid-template-columns: 1fr; }
    .lo-kb-filters-inner { flex-direction: column; align-items: flex-start; }
    .lo-kb-search-bar { flex-wrap: wrap; border-radius: 14px; padding: 10px; }
    .lo-kb-search-btn { width: 100%; text-align: center; }
    .lo-kb-stats-row { grid-template-columns: 1fr 1fr; }
    .lo-kb-admin-table-wrap { overflow-x: auto; }
}
@media (max-width: 480px) {
    .lo-kb-stats-row { grid-template-columns: 1fr; }
}
