/* ======================================================================
   LexperDesk — style strony: baza wiedzy kategoria.
   ====================================================================== */

/* ---------- knowledge-base category ---------- */
.ld-cat-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 14px 0 22px;
}

.ld-cat-head__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex: 0 0 auto;
}

.ld-cat-head__title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -.4px;
    color: var(--ld-text-strong);
}

.ld-cat-head__sub {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--ld-text-muted);
}

.ld-cat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ld-cat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--ld-surface);
    border: 1px solid var(--ld-border);
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
}

.ld-cat-item:hover {
    border-color: var(--ld-primary-soft);
}

.ld-cat-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex: 0 0 auto;
}

.ld-cat-item__body {
    flex: 1;
    min-width: 0;
}

.ld-cat-item__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ld-text-strong);
}

.ld-cat-item__meta {
    margin-top: 3px;
    font-size: 13px;
    color: var(--ld-text-muted);
}

.ld-cat-item__chevron {
    flex: 0 0 auto;
    color: var(--ld-text-muted);
    font-size: 16px;
}
