.reactions {
    display: flex;
    padding-bottom: 8px;
    gap: 5px;
}

.thread__action,
.reaction {
    color: var(--secondary);
    font-size: 15px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.thread__action:hover {
    color: var(--primary);
}

.thread__action-count {
    font-size: 12px;
    align-content: center;
}

.thread__action.active {
    color: var(--primary);
}

.thread__action.active:hover {
    background-color: var(--primary-lighter);
}