

.topic-items {
    display: grid;
    gap: .5rem;
    background: var(--color-background-1);
    padding: 7px;
    border-radius: 7px;
}


.topic-item-link {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: .4rem;
    border-radius: 8px;
    background-color: var(--color-background-2);
    transition: background-color 0.2s;
}


.topic-item-title {
    color: var(--progress-color);
}