.paper-description-wrapper {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.paper-description--expanded {
    display: block !important;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.paper-description__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    border-top: 1px solid #e8e8e8;
    padding: 8px 0 0 0;
    margin-top: 8px;
    margin-bottom: 12px;
    margin-right: 16px;
    cursor: pointer;
    color: #6B8A2B;
    font-size: inherit;
    font-weight: 700;
    width: calc(100% - 16px);
}

.paper-description__toggle svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.paper-description__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}
