/* ===== Kategorijos aprašymo suskleidimas ===== */

.term-description.lsp-collapse {
    position: relative;
    overflow: hidden;
    transition: max-height .35s ease;
}

/* Paskutinės eilutės perėjimas į baltą – žemas, kad neliktų tuščio tarpo */
.term-description.lsp-collapse.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.6em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 90%);
    pointer-events: none;
}

/* Aprašymo paskutinė pastraipa neturi stumti mygtuko žemyn */
.term-description.lsp-collapse p:last-child {
    margin-bottom: 0;
}

.lsp-collapse__toggle {
    display: inline-block;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    background: none;
    color: #e02b20;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: opacity .2s ease;
}

.lsp-collapse__toggle::after {
    content: ' ▾';
    font-size: 12px;
}

.lsp-collapse__toggle[aria-expanded="true"]::after {
    content: ' ▴';
}

.lsp-collapse__toggle:hover {
    opacity: .7;
    text-decoration: underline;
}

.lsp-collapse__toggle:focus-visible {
    outline: 2px solid #e02b20;
    outline-offset: 3px;
}
