.project-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: .65rem;
}
.project-list li {
    background: var(--bg-alt-soft);
    padding: .75rem .9rem;
    border-radius: var(--radius-s);
    display: flex;
    flex-direction: column;
    gap: .3rem;
    transition: background var(--transition), transform var(--transition);
}
.project-list li:hover {
    background: #3b3d52;
    transform: translateY(-3px);
}

.project-list a {
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    font-size: .95rem;
}
.project-list a:hover {
    color: var(--primary-alt);
}
.project-list a.pending {
    cursor: not-allowed;
    opacity: .6;
}
.project-desc {
    font-size: .75rem;
    color: var(--text-muted);
    line-height: 1.2;
}
